diff --git a/ChangeLog b/ChangeLog index c4cfa35a72..49dac18f47 100644 --- a/ChangeLog +++ b/ChangeLog @@ -121,6 +121,10 @@ 3.3.8.0 (not yet released) - bug #3059311 [import] BIGINT field type added to table analysis - [core] Update library PHPExcel to version 1.7.4 +- bug #3062455 [core] copy procedures and routines before tables +- bug #3062455 [export] with SQL, export procedures and routines before tables +- bug #3056023 [import] USE query not working +- bug #3038193 [display] Error when editing row with GEOMETRY column 3.3.7.0 (2010-09-07) - patch #3050492 [PDF scratchboard] Cannot drag table box to the edge after diff --git a/Documentation.html b/Documentation.html index 71cd1759da..5910cc3f2a 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1868,11 +1868,6 @@ $cfg['TrustedProxies'] =
Defines if the whole textarea of the query box will be selected on click.
-
- $cfg['CtrlArrowsMoving'] boolean -
-
Enable Ctrl+Arrows (Option+Arrows in Safari) moving between fields when - editing.
$cfg['LimitChars'] integer
Maximum number of characters shown in any non-numeric field on browse view. @@ -4082,9 +4077,7 @@ INSERT INTO REL_towns VALUES ('M', 'Montréal'); editing fields?

You can use Ctrl+arrows (Option+Arrows in Safari) for moving on most pages - with many editing fields (table structure changes, row editing, etc.) - (must be enabled in configuration - see. - $cfg['CtrlArrowsMoving']). + with many editing fields (table structure changes, row editing, etc.). You can also have a look at the directive $cfg['DefaultPropDisplay'] ('vertical') and see if this eases up editing for you.

diff --git a/db_operations.php b/db_operations.php index c17d372ff4..288de7bfe2 100644 --- a/db_operations.php +++ b/db_operations.php @@ -69,6 +69,40 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { $GLOBALS['pma']->databases->build(); } + if (PMA_MYSQL_INT_VERSION >= 50000) { + // here I don't use DELIMITER because it's not part of the + // language; I have to send each statement one by one + + // to avoid selecting alternatively the current and new db + // we would need to modify the CREATE definitions to qualify + // the db name + $procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE'); + if ($procedure_names) { + foreach($procedure_names as $procedure_name) { + PMA_DBI_select_db($db); + $tmp_query = PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name); + // collect for later display + $GLOBALS['sql_query'] .= "\n" . $tmp_query; + PMA_DBI_select_db($newname); + PMA_DBI_query($tmp_query); + } + } + + $function_names = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION'); + if ($function_names) { + foreach($function_names as $function_name) { + PMA_DBI_select_db($db); + $tmp_query = PMA_DBI_get_definition($db, 'FUNCTION', $function_name); + // collect for later display + $GLOBALS['sql_query'] .= "\n" . $tmp_query; + PMA_DBI_select_db($newname); + PMA_DBI_query($tmp_query); + } + } + } + // go back to current db, just in case + PMA_DBI_select_db($db); + if (isset($GLOBALS['add_constraints']) || $move) { $GLOBALS['sql_constraints_query_full_db'] = array(); } @@ -181,40 +215,6 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { unset($GLOBALS['sql_constraints_query_full_db'], $one_query); } - if (PMA_MYSQL_INT_VERSION >= 50000) { - // here I don't use DELIMITER because it's not part of the - // language; I have to send each statement one by one - - // to avoid selecting alternatively the current and new db - // we would need to modify the CREATE definitions to qualify - // the db name - $procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE'); - if ($procedure_names) { - foreach($procedure_names as $procedure_name) { - PMA_DBI_select_db($db); - $tmp_query = PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name); - // collect for later display - $GLOBALS['sql_query'] .= "\n" . $tmp_query; - PMA_DBI_select_db($newname); - PMA_DBI_query($tmp_query); - } - } - - $function_names = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION'); - if ($function_names) { - foreach($function_names as $function_name) { - PMA_DBI_select_db($db); - $tmp_query = PMA_DBI_get_definition($db, 'FUNCTION', $function_name); - // collect for later display - $GLOBALS['sql_query'] .= "\n" . $tmp_query; - PMA_DBI_select_db($newname); - PMA_DBI_query($tmp_query); - } - } - } - // go back to current db, just in case - PMA_DBI_select_db($db); - // Duplicate the bookmarks for this db (done once for each db) if (! $_error && $db != $newname) { $get_fields = array('user', 'label', 'query'); @@ -343,6 +343,7 @@ if (!$is_information_schema) { /** * rename database */ +if ($db != 'mysql') { ?>
@@ -383,9 +384,11 @@ if (!$is_information_schema) {
diff --git a/db_structure.php b/db_structure.php index f16654778a..f826ce1c17 100644 --- a/db_structure.php +++ b/db_structure.php @@ -70,47 +70,7 @@ $db_collation = PMA_getDbCollation($db); // in a separate file to avoid redeclaration of functions in some code paths require_once './libraries/db_structure.lib.php'; - -$titles = array(); -if (true == $cfg['PropertiesIconic']) { - $titles['Browse'] = '' . __('Browse') . ''; - $titles['NoBrowse'] = '' . __('Browse') . ''; - $titles['Search'] = '' . __('Search') . ''; - $titles['NoSearch'] = '' . __('Search') . ''; - $titles['Insert'] = '' . __('Insert') . ''; - $titles['NoInsert'] = '' . __('Insert') . ''; - $titles['Structure'] = '' . __('Structure') . ''; - $titles['Drop'] = '' . __('Drop') . ''; - $titles['NoDrop'] = '' . __('Drop') . ''; - $titles['Empty'] = '' . __('Empty') . ''; - $titles['NoEmpty'] = '' . __('Empty') . ''; - - if ('both' === $cfg['PropertiesIconic']) { - $titles['Browse'] .= __('Browse'); - $titles['Search'] .= __('Search'); - $titles['NoBrowse'] .= __('Browse'); - $titles['NoSearch'] .= __('Search'); - $titles['Insert'] .= __('Insert'); - $titles['NoInsert'] .= __('Insert'); - $titles['Structure'] .= __('Structure'); - $titles['Drop'] .= __('Drop'); - $titles['NoDrop'] .= __('Drop'); - $titles['Empty'] .= __('Empty'); - $titles['NoEmpty'] .= __('Empty'); - } -} else { - $titles['Browse'] = __('Browse'); - $titles['Search'] = __('Search'); - $titles['NoBrowse'] = __('Browse'); - $titles['NoSearch'] = __('Search'); - $titles['Insert'] = __('Insert'); - $titles['NoInsert'] = __('Insert'); - $titles['Structure'] = __('Structure'); - $titles['Drop'] = __('Drop'); - $titles['NoDrop'] = __('Drop'); - $titles['Empty'] = __('Empty'); - $titles['NoEmpty'] = __('Empty'); -} +require_once './libraries/build_action_titles.inc.php'; /** * Displays the tables list @@ -573,7 +533,6 @@ if (PMA_MYSQL_INT_VERSION > 50100) { /** * Work on the database - * redesigned 2004-05-08 by mkkeck */ /* DATABASE WORK */ /* Printable view of a table */ diff --git a/js/functions.js b/js/functions.js index 6efa1e0457..03cf18690a 100644 --- a/js/functions.js +++ b/js/functions.js @@ -20,6 +20,42 @@ var only_once_elements = new Array(); */ var ajax_message_init = false; +/** + * Generate a new password and copy it to the password input areas + * + * @param object the form that holds the password fields + * + * @return boolean always true + */ +function suggestPassword(passwd_form) { + // restrict the password to just letters and numbers to avoid problems: + // "editors and viewers regard the password as multiple words and + // things like double click no longer work" + var pwchars = "abcdefhjmnpqrstuvwxyz23456789ABCDEFGHJKLMNPQRSTUVWYXZ"; + var passwordlength = 16; // do we want that to be dynamic? no, keep it simple :) + var passwd = passwd_form.generated_pw; + passwd.value = ''; + + for ( i = 0; i < passwordlength; i++ ) { + passwd.value += pwchars.charAt( Math.floor( Math.random() * pwchars.length ) ) + } + passwd_form.text_pma_pw.value = passwd.value; + passwd_form.text_pma_pw2.value = passwd.value; + return true; +} + +/** + * for libraries/display_change_password.lib.php + * libraries/user_password.php + * + */ + +function displayPasswordGenerateButton() { + $('#tr_element_before_generate_password').parent().append('' + PMA_messages['strGeneratePassword'] + ''); + $('#div_element_before_generate_password').parent().append('
'); +} + + /** * selects the content of a given object, f.e. a textarea * @@ -1996,16 +2032,90 @@ $(document).ready(function() { }); // end dialog options }) // end $.get() + // empty table name and number of columns from the minimal form + $(this).find('input[name=table],input[name=num_fields]').val(''); }); /** - * Attach event handler for submission of create table form + * Attach event handler for submission of create table form (save) * * @uses PMA_ajaxShowMessage() * @uses $.PMA_sort_table() * @uses window.parent.refreshNavigation() + * */ - $("#create_table_form").find("input[name=submit_num_fields], input[name=do_save_data]").live('click', function(event) { + // .live() must be called after a selector, see http://api.jquery.com/live + $("#create_table_form input[name=do_save_data]").live('click', function(event) { + event.preventDefault(); + + /** + * @var the_form object referring to the create table form + */ + var the_form = $("#create_table_form"); + + PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']); + $(the_form).append(''); + //User wants to submit the form + $.post($(the_form).attr('action'), $(the_form).serialize() + "&do_save_data=" + $(this).val(), function(data) { + if(data.success == true) { + PMA_ajaxShowMessage(data.message); + $("#create_table_dialog").dialog("close").remove(); + + /** + * @var tables_table Object referring to the element that holds the list of tables + */ + var tables_table = $("#tablesForm").find("tbody").not("#tbl_summary_row"); + + /** + * @var curr_last_row Object referring to the last element in {@link tables_table} + */ + var curr_last_row = $(tables_table).find('tr:last'); + /** + * @var curr_last_row_index_string String containing the index of {@link curr_last_row} + */ + var curr_last_row_index_string = $(curr_last_row).find('input:checkbox').attr('id').match(/\d+/)[0]; + /** + * @var curr_last_row_index Index of {@link curr_last_row} + */ + var curr_last_row_index = parseFloat(curr_last_row_index_string); + /** + * @var new_last_row_index Index of the new row to be appended to {@link tables_table} + */ + var new_last_row_index = curr_last_row_index + 1; + /** + * @var new_last_row_id String containing the id of the row to be appended to {@link tables_table} + */ + var new_last_row_id = 'checkbox_tbl_' + new_last_row_index; + + //append to table + $(data.new_table_string) + .find('input:checkbox') + .val(new_last_row_id) + .end() + .appendTo(tables_table); + + //Sort the table + $(tables_table).PMA_sort_table('th'); + + //Refresh navigation frame as a new table has been added + window.parent.refreshNavigation(); + } + else { + PMA_ajaxShowMessage(data.error); + } + }) // end $.post() + }) // end create table form (save) + + /** + * Attach event handler for create table form (add fields) + * + * @uses PMA_ajaxShowMessage() + * @uses $.PMA_sort_table() + * @uses window.parent.refreshNavigation() + * + */ + // .live() must be called after a selector, see http://api.jquery.com/live + $("#create_table_form input[name=submit_num_fields]").live('click', function(event) { event.preventDefault(); /** @@ -2016,64 +2126,12 @@ $(document).ready(function() { PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']); $(the_form).append(''); - if($(this).attr('name') == 'submit_num_fields') { - //User wants to add more fields to the table - $.post($(the_form).attr('action'), $(the_form).serialize() + "&submit_num_fields=" + $(this).val(), function(data) { - $("#create_table_dialog").html(data); - }) //end $.post() - } - else if($(this).attr('name') == 'do_save_data') { - //User wants to submit the form - $.post($(the_form).attr('action'), $(the_form).serialize() + "&do_save_data=" + $(this).val(), function(data) { - if(data.success == true) { - PMA_ajaxShowMessage(data.message); - $("#create_table_dialog").dialog("close").remove(); + //User wants to add more fields to the table + $.post($(the_form).attr('action'), $(the_form).serialize() + "&submit_num_fields=" + $(this).val(), function(data) { + $("#create_table_dialog").html(data); + }) //end $.post() - /** - * @var tables_table Object referring to the element that holds the list of tables - */ - var tables_table = $("#tablesForm").find("tbody").not("#tbl_summary_row"); - - /** - * @var curr_last_row Object referring to the last element in {@link tables_table} - */ - var curr_last_row = $(tables_table).find('tr:last'); - /** - * @var curr_last_row_index_string String containing the index of {@link curr_last_row} - */ - var curr_last_row_index_string = $(curr_last_row).find('input:checkbox').attr('id').match(/\d+/)[0]; - /** - * @var curr_last_row_index Index of {@link curr_last_row} - */ - var curr_last_row_index = parseFloat(curr_last_row_index_string); - /** - * @var new_last_row_index Index of the new row to be appended to {@link tables_table} - */ - var new_last_row_index = curr_last_row_index + 1; - /** - * @var new_last_row_id String containing the id of the row to be appended to {@link tables_table} - */ - var new_last_row_id = 'checkbox_tbl_' + new_last_row_index; - - //append to table - $(data.new_table_string) - .find('input:checkbox') - .val(new_last_row_id) - .end() - .appendTo(tables_table); - - //Sort the table - $(tables_table).PMA_sort_table('th'); - - //Refresh navigation frame as a new table has been added - window.parent.refreshNavigation(); - } - else { - PMA_ajaxShowMessage(data.error); - } - }) // end $.post() - } // end elseif() - }) // end create table form submit button actions + }) // end create table form (add fields) }, 'top.frame_content'); //end $(document).ready for 'Create Table' @@ -2281,6 +2339,7 @@ $(document).ready(function() { buttons : button_options }) .append(data); + displayPasswordGenerateButton(); }) // end $.get() }) // end handler for change password anchor diff --git a/js/indexes.js b/js/indexes.js index b97fcd2fda..a15b249150 100644 --- a/js/indexes.js +++ b/js/indexes.js @@ -4,51 +4,6 @@ * */ -/** - * Ensures a value submitted in a form is numeric and is in a range - * - * @param object the form - * @param string the name of the form field to check - * @param integer the minimum authorized value - * @param integer the maximum authorized value - * - * @return boolean whether a valid number has been submitted or not - */ -function checkFormElementInRange(theForm, theFieldName, message, min, max) -{ - var theField = theForm.elements[theFieldName]; - var val = parseInt(theField.value); - - if (typeof(min) == 'undefined') { - min = 0; - } - if (typeof(max) == 'undefined') { - max = Number.MAX_VALUE; - } - - // It's not a number - if (isNaN(val)) { - theField.select(); - alert(PMA_messages['strNotNumber']); - theField.focus(); - return false; - } - // It's a number but it is not between min and max - else if (val < min || val > max) { - theField.select(); - alert(message.replace('%d', val)); - theField.focus(); - return false; - } - // It's a valid number - else { - theField.value = val; - } - - return true; -} // end of the 'checkFormElementInRange()' function - - /** * Ensures indexes names are valid according to their type and, for a primary * key, lock index name to 'PRIMARY' diff --git a/js/messages.php b/js/messages.php index d3c82d957b..16e1a83689 100644 --- a/js/messages.php +++ b/js/messages.php @@ -81,7 +81,8 @@ $js_messages['strNo'] = __('No'); $js_messages['strSearching'] = __('Searching'); /* For sql.js */ -$js_messages['strToggleQueryBox'] = __('Toggle Query Box Visibility'); +$js_messages['strHideQueryBox'] = __('Hide query box'); +$js_messages['strShowQueryBox'] = __('Show query box'); $js_messages['strInlineEdit'] = __('Inline Edit'); /* For tbl_change.js */ diff --git a/js/password_generation.js b/js/password_generation.js deleted file mode 100644 index 9153cc9b5a..0000000000 --- a/js/password_generation.js +++ /dev/null @@ -1,10 +0,0 @@ -/* vim: set expandtab sw=4 ts=4 sts=4: */ -/** - * for libraries/display_change_password.lib.php - * - */ - -$(document).ready(function() { - $('#tr_element_before_generate_password').parent().append('' + PMA_messages['strGeneratePassword'] + ''); - $('#div_element_before_generate_password').parent().append('
'); -}); diff --git a/js/server_privileges.js b/js/server_privileges.js index a3c63853d6..519f9f931a 100644 --- a/js/server_privileges.js +++ b/js/server_privileges.js @@ -73,31 +73,6 @@ function checkAddUser(the_form) return checkPassword(the_form); } // end of the 'checkAddUser()' function - -/** - * Generate a new password and copy it to the password input areas - * - * @param object the form that holds the password fields - * - * @return boolean always true - */ -function suggestPassword(passwd_form) { - // restrict the password to just letters and numbers to avoid problems: - // "editors and viewers regard the password as multiple words and - // things like double click no longer work" - var pwchars = "abcdefhjmnpqrstuvwxyz23456789ABCDEFGHJKLMNPQRSTUVWYXZ"; - var passwordlength = 16; // do we want that to be dynamic? no, keep it simple :) - var passwd = passwd_form.generated_pw; - passwd.value = ''; - - for ( i = 0; i < passwordlength; i++ ) { - passwd.value += pwchars.charAt( Math.floor( Math.random() * pwchars.length ) ) - } - passwd_form.text_pma_pw.value = passwd.value; - passwd_form.text_pma_pw2.value = passwd.value; - return true; -} - /** * When a new user is created and retrieved over Ajax, append the user's row to * the user's table @@ -238,6 +213,7 @@ $(document).ready(function() { modal: true, buttons: button_options }); //dialog options end + displayPasswordGenerateButton(); }); // end $.get() });//end of Add New User AJAX event handler @@ -339,7 +315,8 @@ $(document).ready(function() { .dialog({ width: 900, buttons: button_options - }) + }); //dialog options end + displayPasswordGenerateButton(); }) // end $.get() }) @@ -467,4 +444,4 @@ $(document).ready(function() { }, 'top.frame_content'); //end $(document).ready() -/**#@- */ \ No newline at end of file +/**#@- */ diff --git a/js/sql.js b/js/sql.js index 126784d646..8979251e1c 100644 --- a/js/sql.js +++ b/js/sql.js @@ -150,19 +150,30 @@ $(document).ready(function() { $("#sqlqueryresults").trigger('appendAnchor'); /** - * Append the Toggle Query Box message to the query input form + * Append the "Show/Hide query box" message to the query input form * * @memberOf jQuery * @name appendToggleSpan */ - $('') - .html(PMA_messages['strToggleQueryBox']) - .appendTo("#sqlqueryform"); + // do not add this link more than once + if (! $('#sqlqueryform').find('a').is('#togglequerybox')) { + $('') + .html(PMA_messages['strHideQueryBox']) + .appendTo("#sqlqueryform"); - // Attach the toggling of the query box visibility to a click - $("#togglequerybox").live('click', function() { - $(this).siblings().slideToggle("medium"); - }) + // Attach the toggling of the query box visibility to a click + $("#togglequerybox").bind('click', function() { + var $link = $(this) + $link.siblings().slideToggle("medium"); + if ($link.text() == PMA_messages['strHideQueryBox']) { + $link.text(PMA_messages['strShowQueryBox']); + } else { + $link.text(PMA_messages['strHideQueryBox']); + } + // avoid default click action + return false; + }) + } /** * Ajax Event handler for 'SQL Query Submit' @@ -173,17 +184,29 @@ $(document).ready(function() { */ $("#sqlqueryform").live('submit', function(event) { event.preventDefault(); - + $form = $(this); PMA_ajaxShowMessage(); - $(this).append(''); + if (! $form.find('input:hidden').is('#ajax_request_hidden')) { + $form.append(''); + } $.post($(this).attr('action'), $(this).serialize() , function(data) { if(data.success == true) { PMA_ajaxShowMessage(data.message); + // this happens if a USE command was typed + if (typeof data.reload != 'undefined') { + $form.find('input[name=db]').val(data.db); + // need to regenerate the whole upper part + $form.find('input[name=ajax_request]').remove(); + $form.append(''); + $.post('db_sql.php', $form.serialize(), function(data) { + $('body').html(data); + }); // end inner post + } } else if (data.success == false ) { - PMA_ajaxShowMessage(data.error); + PMA_ajaxShowMessage(data.error, 50000); } else { $("#sqlqueryresults").html(data); diff --git a/libraries/build_action_titles.inc.php b/libraries/build_action_titles.inc.php new file mode 100644 index 0000000000..e9da5f65fb --- /dev/null +++ b/libraries/build_action_titles.inc.php @@ -0,0 +1,51 @@ +'; + $titles['NoBrowse'] = '' . __('Browse') . ''; + $titles['Search'] = '' . __('Search') . ''; + $titles['NoSearch'] = '' . __('Search') . ''; + $titles['Insert'] = '' . __('Insert') . ''; + $titles['NoInsert'] = '' . __('Insert') . ''; + $titles['Structure'] = '' . __('Structure') . ''; + $titles['Drop'] = '' . __('Drop') . ''; + $titles['NoDrop'] = '' . __('Drop') . ''; + $titles['Empty'] = '' . __('Empty') . ''; + $titles['NoEmpty'] = '' . __('Empty') . ''; + + if ('both' === $cfg['PropertiesIconic']) { + $titles['Browse'] .= __('Browse'); + $titles['Search'] .= __('Search'); + $titles['NoBrowse'] .= __('Browse'); + $titles['NoSearch'] .= __('Search'); + $titles['Insert'] .= __('Insert'); + $titles['NoInsert'] .= __('Insert'); + $titles['Structure'] .= __('Structure'); + $titles['Drop'] .= __('Drop'); + $titles['NoDrop'] .= __('Drop'); + $titles['Empty'] .= __('Empty'); + $titles['NoEmpty'] .= __('Empty'); + } +} else { + $titles['Browse'] = __('Browse'); + $titles['Search'] = __('Search'); + $titles['NoBrowse'] = __('Browse'); + $titles['NoSearch'] = __('Search'); + $titles['Insert'] = __('Insert'); + $titles['NoInsert'] = __('Insert'); + $titles['Structure'] = __('Structure'); + $titles['Drop'] = __('Drop'); + $titles['NoDrop'] = __('Drop'); + $titles['Empty'] = __('Empty'); + $titles['NoEmpty'] = __('Empty'); +} +?> diff --git a/libraries/config.default.php b/libraries/config.default.php index 339a40da88..cc23ceea04 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -2198,13 +2198,6 @@ $cfg['CharTextareaCols'] = 40; */ $cfg['CharTextareaRows'] = 2; -/** - * Enable Ctrl+Arrows moving between fields when editing? - * - * @global boolean $cfg['CtrlArrowsMoving'] - */ -$cfg['CtrlArrowsMoving'] = true; - /** * Max field data length in browse mode for all non-numeric fields * diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php index 26d5a78dd7..65545b7008 100644 --- a/libraries/config/messages.inc.php +++ b/libraries/config/messages.inc.php @@ -39,7 +39,6 @@ $strConfigCompressOnFly_name = __('Compress on the fly'); $strConfigConfigurationFile = __('Configuration file'); $strConfigConfirm_desc = __('Whether a warning ("Are your really sure...") should be displayed when you\'re about to lose data'); $strConfigConfirm_name = __('Confirm DROP queries'); -$strConfigCtrlArrowsMoving_name = __('Field navigation using Ctrl+Arrows'); $strConfigDBG_sql_name = __('Debug SQL'); $strConfigDefaultDisplay_name = __('Default display direction'); $strConfigDefaultPropDisplay_desc = __('[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates maximum number for which vertical model is used'); diff --git a/libraries/config/user_preferences.forms.php b/libraries/config/user_preferences.forms.php index 025c0211c6..cd9e6731c5 100644 --- a/libraries/config/user_preferences.forms.php +++ b/libraries/config/user_preferences.forms.php @@ -115,7 +115,6 @@ $forms['Main_frame']['Edit'] = array( 'InsertRows', 'ForeignKeyDropdownOrder', 'ForeignKeyMaxLimit', - 'CtrlArrowsMoving', 'DefaultPropDisplay'); $forms['Main_frame']['Tabs'] = array( 'LightTabs', diff --git a/libraries/dbi/mysqli.dbi.lib.php b/libraries/dbi/mysqli.dbi.lib.php index 086b47adb9..e027f236f3 100644 --- a/libraries/dbi/mysqli.dbi.lib.php +++ b/libraries/dbi/mysqli.dbi.lib.php @@ -524,7 +524,7 @@ function PMA_DBI_get_fields_meta($result) // so this would override TINYINT and mark all TINYINT as string // https://sf.net/tracker/?func=detail&aid=1532111&group_id=23067&atid=377408 //$typeAr[MYSQLI_TYPE_CHAR] = 'string'; - $typeAr[MYSQLI_TYPE_GEOMETRY] = 'unknown'; + $typeAr[MYSQLI_TYPE_GEOMETRY] = 'geometry'; $typeAr[MYSQLI_TYPE_BIT] = 'bit'; $fields = mysqli_fetch_fields($result); diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 3520257404..da8808724c 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1118,25 +1118,6 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { } } // end if (1.2.1) - if (isset($GLOBALS['cfg']['Bookmark']['table']) && isset($GLOBALS['cfg']['Bookmark']['db']) && $table == $GLOBALS['cfg']['Bookmark']['table'] && $db == $GLOBALS['cfg']['Bookmark']['db'] && isset($row[1]) && isset($row[0])) { - $_url_params = array( - 'db' => $row[1], - 'id_bookmark' => $row[0], - 'action_bookmark' => '0', - 'action_bookmark_all' => '1', - 'SQL' => __('Execute bookmarked query'), - ); - $bookmark_go = ''; - - $bookmark_go .= PMA_getIcon('b_bookmark.png', __('Execute bookmarked query'), true); - - $bookmark_go .= ''; - } else { - $bookmark_go = ''; - } - // 1.2.2 Delete/Kill link(s) if ($is_display['del_lnk'] == 'dr') { // delete row case $_url_params = array( @@ -1330,7 +1311,13 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { $vertical_display['data'][$row_no][$i] = '  ' . "\n"; } } - // n o t n u m e r i c a n d n o t B L O B + // g e o m e t r y + } elseif ($meta->type == 'geometry') { + $geometry_text = PMA_handle_non_printable_contents('GEOMETRY', (isset($row[$i]) ? $row[$i] : ''), $transform_function, $transform_options, $default_function, $meta); + $vertical_display['data'][$row_no][$i] = ' ' . $geometry_text . ''; + unset($geometry_text); + + // n o t n u m e r i c a n d n o t B L O B } else { if (!isset($row[$i]) || is_null($row[$i])) { $vertical_display['data'][$row_no][$i] = ' NULL' . "\n"; @@ -1442,7 +1429,6 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { if (isset($edit_url)) { $vertical_display['edit'][$row_no] .= ' ' . "\n" . PMA_linkOrButton($edit_url, $edit_str, array(), false) - . $bookmark_go . ' ' . "\n"; } else { unset($vertical_display['edit'][$row_no]); @@ -2266,7 +2252,7 @@ function PMA_displayResultsOperations($the_disp_mode, $analyzed_sql) { * @uses PMA_formatByteDown() * @uses strpos() * @uses str_replace() - * @param string $category BLOB|BINARY + * @param string $category BLOB|BINARY|GEOMETRY * @param string $content the binary content * @param string $transform_function * @param string $transform_options diff --git a/libraries/display_tbl_links.lib.php b/libraries/display_tbl_links.lib.php index d261fd0fe1..73989100a4 100644 --- a/libraries/display_tbl_links.lib.php +++ b/libraries/display_tbl_links.lib.php @@ -28,7 +28,6 @@ if ($doWriteModifyAt == 'left') { if (!empty($edit_url)) { echo ' ' . "\n" . PMA_linkOrButton($edit_url, $edit_str, '', FALSE) - . $bookmark_go . ' ' . "\n"; } if (!empty($del_url)) { @@ -45,7 +44,6 @@ if ($doWriteModifyAt == 'left') { if (!empty($edit_url)) { echo ' ' . "\n" . PMA_linkOrButton($edit_url, $edit_str, '', FALSE) - . $bookmark_go . ' ' . "\n"; } if (!empty($del_url) && $is_display['del_lnk'] != 'kp') { diff --git a/libraries/export/sql.php b/libraries/export/sql.php index 2cb48ec4ea..cc8cc75b36 100644 --- a/libraries/export/sql.php +++ b/libraries/export/sql.php @@ -370,9 +370,60 @@ function PMA_exportDBCreate($db) return FALSE; } if (isset($GLOBALS['sql_backquotes']) && isset($GLOBALS['sql_compatibility']) && $GLOBALS['sql_compatibility'] == 'NONE') { - return PMA_exportOutputHandler('USE ' . PMA_backquote($db) . ';' . $crlf); + $result = PMA_exportOutputHandler('USE ' . PMA_backquote($db) . ';' . $crlf); + } else { + $result = PMA_exportOutputHandler('USE ' . $db . ';' . $crlf); } - return PMA_exportOutputHandler('USE ' . $db . ';' . $crlf); + + if ($result && isset($GLOBALS['sql_structure']) && isset($GLOBALS['sql_procedure_function'])) { + $text = ''; + $delimiter = '$$'; + + $procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE'); + $function_names = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION'); + + if ($procedure_names || $function_names) { + $text .= $crlf + . 'DELIMITER ' . $delimiter . $crlf; + } + + if ($procedure_names) { + $text .= + PMA_exportComment() + . PMA_exportComment(__('Procedures')) + . PMA_exportComment(); + + foreach($procedure_names as $procedure_name) { + if (! empty($GLOBALS['sql_drop_table'])) { + $text .= 'DROP PROCEDURE IF EXISTS ' . PMA_backquote($procedure_name) . $delimiter . $crlf; + } + $text .= PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name) . $delimiter . $crlf . $crlf; + } + } + + if ($function_names) { + $text .= + PMA_exportComment() + . PMA_exportComment(__('Functions')) + . PMA_exportComment(); + + foreach($function_names as $function_name) { + if (! empty($GLOBALS['sql_drop_table'])) { + $text .= 'DROP FUNCTION IF EXISTS ' . PMA_backquote($function_name) . $delimiter . $crlf; + } + $text .= PMA_DBI_get_definition($db, 'FUNCTION', $function_name) . $delimiter . $crlf . $crlf; + } + } + + if ($procedure_names || $function_names) { + $text .= 'DELIMITER ;' . $crlf; + } + + if (! empty($text)) { + $result = PMA_exportOutputHandler($text); + } + } + return $result; } /** @@ -415,49 +466,16 @@ function PMA_exportDBFooter($db) $text = ''; $delimiter = '$$'; - $procedure_names = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE'); - $function_names = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION'); - if (PMA_MYSQL_INT_VERSION > 50100) { $event_names = PMA_DBI_fetch_result('SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' . PMA_sqlAddslashes($db,true) . '\';'); } else { $event_names = array(); } - if ($procedure_names || $function_names || $event_names) { + if ($event_names) { $text .= $crlf . 'DELIMITER ' . $delimiter . $crlf; - } - if ($procedure_names) { - $text .= - PMA_exportComment() - . PMA_exportComment(__('Procedures')) - . PMA_exportComment(); - - foreach($procedure_names as $procedure_name) { - if (! empty($GLOBALS['sql_drop_table'])) { - $text .= 'DROP PROCEDURE IF EXISTS ' . PMA_backquote($procedure_name) . $delimiter . $crlf; - } - $text .= PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name) . $delimiter . $crlf . $crlf; - } - } - - if ($function_names) { - $text .= - PMA_exportComment() - . PMA_exportComment(__('Functions')) - . PMA_exportComment(); - - foreach($function_names as $function_name) { - if (! empty($GLOBALS['sql_drop_table'])) { - $text .= 'DROP FUNCTION IF EXISTS ' . PMA_backquote($function_name) . $delimiter . $crlf; - } - $text .= PMA_DBI_get_definition($db, 'FUNCTION', $function_name) . $delimiter . $crlf . $crlf; - } - } - - if ($event_names) { $text .= PMA_exportComment() . PMA_exportComment(__('Events')) @@ -469,8 +487,7 @@ function PMA_exportDBFooter($db) } $text .= PMA_DBI_get_definition($db, 'EVENT', $event_name) . $delimiter . $crlf . $crlf; } - } - if ($procedure_names || $function_names || $event_names) { + $text .= 'DELIMITER ;' . $crlf; } diff --git a/libraries/import.lib.php b/libraries/import.lib.php index 98221def86..79a43b7e69 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -117,6 +117,8 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false) $display_query = ''; } $sql_query = $import_run_buffer['sql']; + // If a 'USE ' SQL-clause was found, set our current $db to the new one + list($db, $reload) = PMA_lookForUse($import_run_buffer['sql'], $db, $reload); } elseif ($run_query) { if ($controluser) { $result = PMA_query_as_controluser($import_run_buffer['sql']); @@ -156,10 +158,8 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false) } // If a 'USE ' SQL-clause was found and the query succeeded, set our current $db to the new one - if ($result != FALSE && preg_match('@^[\s]*USE[[:space:]]*([\S]+)@i', $import_run_buffer['sql'], $match)) { - $db = trim($match[1]); - $db = trim($db,';'); // for example, USE abc; - $reload = TRUE; + if ($result != FALSE) { + list($db, $reload) = PMA_lookForUse($import_run_buffer['sql'], $db, $reload); } if ($result != FALSE && preg_match('@^[\s]*(DROP|CREATE)[\s]+(IF EXISTS[[:space:]]+)?(TABLE|DATABASE)[[:space:]]+(.+)@im', $import_run_buffer['sql'])) { @@ -205,6 +205,25 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false) } } +/** + * Looks for the presence of USE to possibly change current db + * + * @param string buffer to examine + * @param string current db + * @param boolean reload + * @return array (current or new db, whether to reload) + * @access public + */ +function PMA_lookForUse($buffer, $db, $reload) +{ + if (preg_match('@^[\s]*USE[[:space:]]*([\S]+)@i', $buffer, $match)) { + $db = trim($match[1]); + $db = trim($db,';'); // for example, USE abc; + $reload = TRUE; + } + return(array($db, $reload)); +} + /** * Returns next part of imported file/buffer diff --git a/libraries/sqlparser.lib.php b/libraries/sqlparser.lib.php index 793ae26fe0..a9568c4be9 100644 --- a/libraries/sqlparser.lib.php +++ b/libraries/sqlparser.lib.php @@ -2119,10 +2119,12 @@ if (! defined('PMA_MINIMUM_COMMON')) { $docu = TRUE; break; } // end switch - // inner_sql is a span that exists for all cases + // inner_sql is a span that exists for all cases, except query_only // of $cfg['SQP']['fmtType'] to make possible a replacement // for inline editing - $str .= ''; + if ($mode!='query_only') { + $str .= ''; + } $close_docu_link = false; $indent = 0; $bracketlevel = 0; @@ -2617,8 +2619,10 @@ if (! defined('PMA_MINIMUM_COMMON')) { $str .= ''; $close_docu_link = false; } - // close inner_sql span - $str .= ''; + if ($mode!='query_only') { + // close inner_sql span + $str .= ''; + } if ($mode=='color') { // close syntax span $str .= ''; diff --git a/libraries/tbl_properties.inc.php b/libraries/tbl_properties.inc.php index c093635fee..a00a164973 100644 --- a/libraries/tbl_properties.inc.php +++ b/libraries/tbl_properties.inc.php @@ -369,7 +369,7 @@ for ($i = 0; $i < $num_fields; $i++) { . ' class="textfield" />' . '

'; $content_cells[$i][$ci] .= __('ENUM or SET data too long?') - . ' ' + . ' ' . __('Get more editing space') . '

'; $ci++; @@ -597,7 +597,6 @@ for ($i = 0; $i < $num_fields; $i++) { } } // end for -if ($cfg['CtrlArrowsMoving']) { ?> - -
+ \n" "Language-Team: afrikaans \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Wys alles" @@ -35,17 +35,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Soek" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -60,14 +63,14 @@ msgstr "Soek" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Tabel kommentaar" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Tabel kommentaar" @@ -133,7 +136,7 @@ msgstr "Tabel kommentaar" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -148,8 +151,8 @@ msgstr "Kolom name" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "Tipe" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "Skakels na" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "Kommentaar" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nee" @@ -222,10 +225,10 @@ msgstr "Nee" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "Kies Alles" msgid "Unselect All" msgstr "Selekteer Niks" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 #, fuzzy msgid "The database name is empty!" msgstr "Die tabel naam is leeg!" @@ -267,82 +270,82 @@ msgstr "Tabel %s is vernoem na %s" msgid "Database %s has been copied to %s" msgstr "Tabel %s is gekopieer na %s." -#: db_operations.php:365 +#: db_operations.php:366 #, fuzzy msgid "Rename database to" msgstr "Hernoem tabel na" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 #, fuzzy msgid "Command" msgstr "Kommentaar" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy msgid "Remove database" msgstr "Hernoem tabel na" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Databasis %s is verwyder." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Geen databasisse" -#: db_operations.php:442 +#: db_operations.php:445 #, fuzzy msgid "Copy database to" msgstr "Geen databasisse" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Slegs struktuur" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktuur en data" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Slegs Data" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,24 +357,24 @@ msgstr "" "Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " "Om uit te vind hoekom kliek %shier%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" msgstr "Vertoon PDF skema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -382,13 +385,13 @@ msgstr "Rye" msgid "Size" msgstr "Grootte" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "in gebruik" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 #, fuzzy @@ -396,20 +399,20 @@ msgid "Creation" msgstr "Skep" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -418,7 +421,7 @@ msgstr[0] "%s tabel(le)" msgstr[1] "%s tabel(le)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -448,7 +451,7 @@ msgid "Descending" msgstr "Dalend" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Wys" @@ -469,8 +472,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Of" @@ -543,17 +546,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultate binne tabel %s" msgstr[1] "%s resultate binne tabel %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Beloer Data" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -598,156 +603,141 @@ msgstr "Binne tabel(le):" msgid "Inside column:" msgstr "Binne tabel(le):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Voeg by" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktuur" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Verwyder" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Maak Leeg" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaak" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Veld %s is verwyder" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is verwyder" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Som" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Met gekose:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Kies Alles" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Kies Niks" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Export" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Maak Leeg" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Verwyder" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Kontroleer tabel" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Herstel tabel" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analiseer tabel" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "" @@ -755,13 +745,13 @@ msgstr "" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -788,8 +778,8 @@ msgstr "" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Aksie" @@ -836,12 +826,12 @@ msgstr "Kontroleer tabel" msgid "Database Log" msgstr "Databasis" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -910,7 +900,7 @@ msgstr "Die boekmerk is verwyder." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -933,7 +923,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Terug" @@ -1009,11 +999,11 @@ msgstr "Die gasheer naam is leeg!" msgid "The user name is empty!" msgstr "Die gebruiker naam ontbreek!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Die wagwoord is leeg!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" @@ -1107,115 +1097,121 @@ msgid "Searching" msgstr "Soek" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL-stelling" #: js/messages.php:85 +#, fuzzy +msgid "Show query box" +msgstr "SQL-stelling" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relasie uitsig" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Algemene verwantskap funksies" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Algemene verwantskap funksies" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Onbeskikbaar" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kies 'n Veld om te vertoon" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Verander wagwoord" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Geen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1223,95 +1219,95 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mei" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1319,176 +1315,176 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Des" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "Records" msgid "Second" @@ -1563,9 +1559,9 @@ msgid "Comment" msgstr "Kommentaar" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Verander" @@ -1586,15 +1582,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "databasisse" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fout" @@ -1830,6 +1826,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Voeg by" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktuur" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1896,7 +1918,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "" @@ -1950,7 +1972,7 @@ msgstr "MySQL het gepraat: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Verduidelik SQL" @@ -1962,11 +1984,11 @@ msgstr "Ignoreer SQL Verduideliking" msgid "Without PHP Code" msgstr "Sonder PHP Kode" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Skep PHP Kode" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1975,7 +1997,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Ignoreer SQL Validasie" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Valideer SQL" @@ -2073,7 +2095,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2096,14 +2118,14 @@ msgid "Select from the web server upload directory %s:" msgstr "" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Struktuur" @@ -2232,7 +2254,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2242,15 +2264,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Stoor" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Herstel" @@ -2371,135 +2393,131 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Databasis statistieke" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Vertoon Funksies" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Stoor as leer (file)" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Karakterstel van die leer:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formaat" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2507,66 +2525,66 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Velde omring met" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Velde ontsnap (escaped) deur" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Lyne beeindig deur" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Lyne beeindig deur" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2574,199 +2592,199 @@ msgstr "" msgid "Dump table" msgstr "%s tabel(le)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 #, fuzzy msgid "Relations" msgstr "Operasies" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "Export" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy msgid "Use delayed inserts" msgstr "Uitgebreide toevoegings" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Uitgebreide toevoegings" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Export" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV data" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "General" msgstr "Voortgebring deur" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2774,205 +2792,205 @@ msgstr "" msgid "Import" msgstr "Export" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 #, fuzzy msgid "LaTeX" msgstr "Etiket" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Databasis statistieke" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 #, fuzzy msgid "Tables" msgstr "Tabel" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentasie" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Bladsy nommer:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentasie" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL-stelling" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL-stelling" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL-stelling" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Skip Validate SQL" msgid "SQL Validator" msgstr "Ignoreer SQL Validasie" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2980,276 +2998,276 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tabel" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "Voeg 'n nuwe veld by" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Vervang tabel data met leer (file)" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Column names" msgid "Column names in first row" msgstr "Kolom name" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Kolom Kommentaar word vertoon" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3257,419 +3275,419 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Verander tabel sorteer volgens" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Geen tabelle" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Geen databasisse" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3678,299 +3696,299 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Databasis" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Herstel tabel" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Kolom Kommentaar word vertoon" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Stellings" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "Bediener weergawe" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "Wys tabelle" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Ry Statistiek" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3978,122 +3996,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Wagwoord" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Gebruiker Naam:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Verstekwaarde (default)" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4101,58 +4119,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4173,73 +4191,73 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "Databasis statistieke" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Data" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV vir M$ Excel data" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4278,7 +4296,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4307,8 +4325,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Regte" @@ -4320,7 +4338,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4349,18 +4367,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Verander wagwoord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Geen Wagwoord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Tik weer" @@ -4381,8 +4399,8 @@ msgstr "Skep 'n nuwe databasis" msgid "Create" msgstr "Skep" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Geen Regte" @@ -4511,8 +4529,8 @@ msgid "Compression:" msgstr "" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Geen" @@ -4668,7 +4686,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4704,8 +4722,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4723,49 +4741,49 @@ msgstr "" msgid "The row has been deleted" msgstr "Die ry is verwyder" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Vermoor" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "in navraag" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Vertoon rye" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Verander" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "Kolom Kommentaar word vertoon" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Skakel nie gevind nie" @@ -5186,12 +5204,12 @@ msgid "Data dump options" msgstr "Databasis statistieke" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Stort data vir tabel" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Tabel struktuur vir tabel" @@ -5241,9 +5259,9 @@ msgstr "Vertoon Funksies" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Gasheer (host)" @@ -5386,42 +5404,42 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Funksie" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Slegs struktuur" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5454,43 +5472,43 @@ msgstr "SQL resultaat" msgid "Generated by" msgstr "Voortgebring deur" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Geen databasisse" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5541,7 +5559,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5618,7 +5636,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Biner" @@ -5900,8 +5918,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Gebruiker naam" @@ -5920,7 +5938,7 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Waarde" @@ -5939,34 +5957,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Enige gebruiker" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Enige gasheer (host)" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6218,11 +6236,11 @@ msgstr "Hardloop SQL stellings op databasis %s" msgid "Columns" msgstr "Kolom name" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6254,7 +6272,7 @@ msgstr "Kyk slegs" msgid "Location of the text file" msgstr "Soek die teksleer" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "" @@ -6417,21 +6435,21 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Voeg 'n nuwe veld by" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6601,8 +6619,8 @@ msgstr "Algemene verwantskap funksies" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Gebruiker" @@ -6640,7 +6658,7 @@ msgstr "Amptelike phpMyAdmin Tuisblad" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6648,21 +6666,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6670,18 +6688,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6690,21 +6708,21 @@ msgstr "" "Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " "Om uit te vind hoekom kliek %shier%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7033,111 +7051,111 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Sien die storting (skema) van die databasis" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7145,219 +7163,219 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 #, fuzzy msgid "No privileges." msgstr "Geen Regte" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Geen" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: MySQL regte name word in Engels vertoon " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 #, fuzzy msgid "Global privileges" msgstr "Geen Regte" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:710 +#: server_privileges.php:709 #, fuzzy msgid "Login Information" msgstr "Wys PHP informasie" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Moenie die wagwoord verander nie" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Geen gebruiker(s) gevind nie." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Jy het die regte opgedateer vir %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jy het die regte herroep vir %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Verander Regte" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Herroep" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Enige" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Voeg 'n nuwe gebruiker by" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7366,91 +7384,91 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Geen" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8344,7 +8362,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8752,12 +8770,12 @@ msgstr "" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etiket" @@ -8766,73 +8784,73 @@ msgstr "Etiket" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funksie" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "" " Omrede sy lengte,
is hierdie veld moontlik nie veranderbaar nie " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Biner - moenie verander nie" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: tbl_change.php:1052 +#: tbl_change.php:1054 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8934,12 +8952,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabel %s is verwyder" @@ -9431,11 +9449,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "geen Beskrywing" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Jy het nie genoeg regte om nou hier te wees nie!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Die profiel is opgedateer." diff --git a/po/ar.po b/po/ar.po index fa090c3722..d1083e8f37 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-05-29 14:16+0200\n" "Last-Translator: Ahmed \n" "Language-Team: arabic \n" @@ -16,7 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "شاهد الكل" @@ -38,17 +38,20 @@ msgstr "" "لم يمكن تحديث نافذة المتصفح المستهدفة. يبدو أنك أغلقت الرئيسية أو أن مستعرضك " "يمنع التحديث عبر النوافذ بسبب إعدادات الأمان." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ابحث" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "ابحث" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "تعليقات على الجدول" @@ -133,7 +136,7 @@ msgstr "تعليقات على الجدول" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -148,8 +151,8 @@ msgstr "اسم العمود" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "النوع" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "خالي" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "مرتبط بـ" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "تعليقات" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "لا" @@ -222,10 +225,10 @@ msgstr "لا" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "تحديد الكل" msgid "Unselect All" msgstr "إلغاء تحديد الكل" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "إسم قاعدة البيانات خالي!" @@ -266,81 +269,81 @@ msgstr "تم إعادة تسمية قاعدة البيانات %s إلى %s" msgid "Database %s has been copied to %s" msgstr "تم نسخ قاعدة البيانات %s إلى %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "أمر" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "قاعدة بيانات %s محذوفه." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "إنسخ قاعدة البيانات إلى" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "إنسخ قاعدة البيانات إلى" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "البنية فقط" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "البنية والبيانات" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "بيانات فقط" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE قبل النسخ" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "أضف %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "أضف قيودا" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -352,24 +355,24 @@ msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" "s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "بناء الارتباطات" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "الجدول" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -380,33 +383,33 @@ msgstr "صفوف" msgid "Size" msgstr "الحجم" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "قيد الإستعمال" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "الإنشاء" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "التحديث الأخير" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "التحقق الأخير" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -415,7 +418,7 @@ msgstr[0] "%s جدول (جداول)" msgstr[1] "%s جدول (جداول)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -445,7 +448,7 @@ msgid "Descending" msgstr "تنازليا" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "عرض" @@ -466,8 +469,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "أو" @@ -544,17 +547,19 @@ msgstr[3] "%s مطابقة في الجدول %s" msgstr[4] "%s مطابقة في الجدول %s" msgstr[5] "%s مطابقة في الجدول %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "استعراض" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -603,156 +608,141 @@ msgstr "داخل الجدول)الجداول(:" msgid "Inside column:" msgstr "داخل الجدول)الجداول(:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "إدخال" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "بناء" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "حذف" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "إفراغ محتوى" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s أفرغت محتوياتها" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذفت" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "المجموع" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr ": على المحدد" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "اختر الكل" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "إلغاء تحديد الكل" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "تحقق من overhead" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "تصدير" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "إفراغ محتوى" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "حذف" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "التحقق من الجدول" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "ضغط الجدول" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "إصلاح الجدول" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "تحليل الجدول" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "قاموس البيانات" @@ -760,13 +750,13 @@ msgstr "قاموس البيانات" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -792,8 +782,8 @@ msgstr "وضع" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "العملية" @@ -836,12 +826,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -912,7 +902,7 @@ msgstr "لقد حذفت العلامة المرجعية." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "تم إنشاء العلامة المرجعية %s" @@ -935,7 +925,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "رجوع" @@ -1013,11 +1003,11 @@ msgstr "اسم المستضيف فارغ!" msgid "The user name is empty!" msgstr "اسم المستخدم فارغ!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "كلمة السر فارغة !" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "كلمتا السر غير متشابهتان !" @@ -1122,112 +1112,120 @@ msgid "Searching" msgstr "ابحث" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "في الاستعلام" #: js/messages.php:85 +#, fuzzy +#| msgid "SQL query" +msgid "Show query box" +msgstr "استعلام-SQL" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "تمت التعديلات" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "المزايا العامّة للرابط" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "معطل" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "تغيير كلمة السر" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "ولد" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "تغيير كلمة السر" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "الإثنين" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "تبرع" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "سابق" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1235,94 +1233,94 @@ msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "مجموع كلي" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "يناير" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "فبراير" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "مارس" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "أبريل" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "مايو" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "يونيو" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "يوليو" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "أغسطس" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "سبتمبر" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "أكتوبر" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "نوفمبر" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1330,174 +1328,174 @@ msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "الأحد" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "الإثنين" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "الجمعة" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "الأسبوع" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "الساعة" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "الثانية" @@ -1569,9 +1567,9 @@ msgid "Comment" msgstr "تعليق" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "تحرير" @@ -1592,15 +1590,15 @@ msgid "" "removed." msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "قاعدة بيانات" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "خطأ" @@ -1839,6 +1837,32 @@ msgstr "نزل الملف" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "إدخال" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "بناء" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Databases statistics" @@ -1905,7 +1929,7 @@ msgstr "فهرس خادم غير صحيح: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "خادم" @@ -1959,7 +1983,7 @@ msgstr "MySQL قال: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "اشرح SQL" @@ -1971,11 +1995,11 @@ msgstr "تخطي شرح SQL" msgid "Without PHP Code" msgstr "بدون كود PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "أنشئ كود PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "حدث" @@ -1984,7 +2008,7 @@ msgstr "حدث" msgid "Skip Validate SQL" msgstr "تخطي التأكد من SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "التحقق من استعلام SQL" @@ -2082,7 +2106,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2106,14 +2130,14 @@ msgid "Select from the web server upload directory %s:" msgstr "دليل تحميل الملفات على خادم الشبكة" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2243,7 +2267,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2253,15 +2277,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "حفظ" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "إلغاء" @@ -2382,141 +2406,137 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Relational schema" msgid "Default display direction" msgstr "بناء الارتباطات" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "عدل الصف التالي" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "إظهار المزايا" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "errors." msgid "Gather errors" msgstr "أخطاء." -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "errors." msgid "Iconic errors" msgstr "أخطاء." -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "حفظ كملف" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "صيغة" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "الضغط" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2526,68 +2546,68 @@ msgstr "الضغط" msgid "Put columns names in the first row" msgstr "ضع أسماء الحقول في السطر الأول" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "حقل مضمن بـ" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "حقل متجاهل بـ" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "استبدل NULL بـ" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "خطوط مفصولة بـ" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "خطوط مفصولة بـ" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "إصدارة إكسل" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2595,399 +2615,399 @@ msgstr "" msgid "Dump table" msgstr "%s جدول (جداول)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "أضف عنوانا للجدول" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "عنوان الجدول" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "عنوان جدول تابع" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "نوع MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "الروابط" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "نوع التصدير" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "خزن على الملفات الموجودة أصلا" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "حماية أسماء الجداول و الحقول ب \"`\" " -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "تواريخ الإنشاء/التحديث/التحقق" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "استخدم الإضافات المتأخرة" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Use delayed inserts" msgid "Use ignore inserts" msgstr "استخدم الإضافات المتأخرة" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "تصدير" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "سي إس في" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "ولد" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "استورد" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "لاتكس" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "خوادم" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "جداول" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "مستندات وثائقية" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "صفحة رقم:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "نافذة الاستعلام" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "مستندات وثائقية" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" msgstr "متغيرات وإعدادات الخادم" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "نصوص SQL سابقة" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2995,281 +3015,281 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "استخدم حقل نص" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "استخدم حقل نص" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "تحذير" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "استبدال بيانات الجدول بالملف" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "ضع أسماء الحقول في السطر الأول" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "أضف قيمة AUTO_INCREMENT" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "إظهار تعليقات العمود" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3277,422 +3297,422 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "تعديل ترتيب الجدول بـ" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "نافذة الاستعلام" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "نافذة الاستعلام" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "نافذة الاستعلام" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3701,293 +3721,293 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "اسم قاعدة البيانات" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "إظهار تعليقات العمود" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "أوامر" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3995,121 +4015,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "كلمة السر" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "اسم المستخدم" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "إضافه/حذف عمود حقل" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "افتراضي" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4117,58 +4137,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "زيب" @@ -4189,43 +4209,43 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Database export options" msgid "Database export options" @@ -4233,30 +4253,30 @@ msgstr "خيارات تصدير قاعدة بيانات" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "بيانات" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "بيانات CSV لبرنامج ميكروسوفت إكسل" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4295,7 +4315,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "أحداث" @@ -4324,8 +4344,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "الإمتيازات" @@ -4337,7 +4357,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4366,18 +4386,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "تغيير كلمة السر" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "لا كلمة سر" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "أعد كتابة" @@ -4398,8 +4418,8 @@ msgstr "تكوين قاعدة بيانات جديدة" msgid "Create" msgstr "تكوين" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "امتياز غير موجود" @@ -4536,8 +4556,8 @@ msgid "Compression:" msgstr "الضغط" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "لا شيء" @@ -4697,7 +4717,7 @@ msgstr "رتب حسب المفتاح" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4732,8 +4752,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "أخف" @@ -4751,49 +4771,49 @@ msgstr "نفذ استعلام محفوظ بعلامة مرجعية" msgid "The row has been deleted" msgstr "لقد تم حذف الصف" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "إبطال" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "في الاستعلام" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "مشاهدة السجلات " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "المجموع" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "تغيير" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "عرض الطباعة (مع النصوص الكاملة)." -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "إظهار بناء ملف PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" @@ -5214,12 +5234,12 @@ msgid "Data dump options" msgstr "خيارات تصدير قاعدة بيانات" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "إرجاع أو استيراد بيانات الجدول" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "بنية الجدول" @@ -5274,9 +5294,9 @@ msgstr "أنواع MIME المتوفرة" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "المزود" @@ -5420,40 +5440,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "القيود للجدول" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5486,42 +5506,42 @@ msgstr "ناتج استعلام SQL" msgid "Generated by" msgstr "أنشئ بواسطة" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL قام بإرجاع نتيجة إعداد فارغه (مثلا صف صفري)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "اذهب إلى الجدول" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5572,7 +5592,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "اسم الجدول" @@ -5649,7 +5669,7 @@ msgid "Charset" msgstr "مجموعة المحارف" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "ثنائي" @@ -5933,8 +5953,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "اسم المستخدم" @@ -5953,7 +5973,7 @@ msgid "Variable" msgstr "متغير" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "القيمة" @@ -5972,34 +5992,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "أي مستخدم" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "استخدم حقل نص" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "أي مزود" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "محلي" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "هذا المضيف" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "استخدم الجدول المضيف" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6252,11 +6272,11 @@ msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بي msgid "Columns" msgstr "اسم العمود" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" @@ -6288,7 +6308,7 @@ msgstr "عرض فقط" msgid "Location of the text file" msgstr "مكان ملف نصي" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "دليل تحميل الملفات على خادم الشبكة" @@ -6450,22 +6470,22 @@ msgid "" "author what %s does." msgstr "ليس هناك وصف متوفر لهذا التحويل.
رجاء اسأل الناشر، ما يفعله %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "أضف إلى الملاحظات" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6680,8 +6700,8 @@ msgstr "المزايا العامّة للرابط" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "المستخدم" @@ -6718,7 +6738,7 @@ msgstr "الصفحة الرئيسية الرسمية لـ phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6730,21 +6750,21 @@ msgstr "" "الافتراضية معرض لخطر الاقتحام، وعليك أن تقوم بإصلاح ثغرة الأمان هذه في أقرب " "وقت ممكن." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6752,18 +6772,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "يحتاج ملف الإعداد الآن إلى كلمة المرور السرية." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6772,21 +6792,21 @@ msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" "s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7114,111 +7134,111 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "اعرض أو احفظ بناء قواعد البيانات." -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "يتضمن كل الصلاحيات عدا GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "يسمح بإنشاء جداول جديدة." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "يسمح بإنشاء جداول مؤقتة." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "يسمح بحذف البيانات." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "يسمح بحذف قواعد البيانات." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "يسمح بحذف الجداول." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "يسمح بإنشاء وحذف الفهارس." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "يسمح بإضافة واستبدال البيانات." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "يسمح بقفل الجداول للعملية الحالية." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "يحد من عدد الاتصالات الجديدة التي يمكن للمستخدم فتحها بكل ساعة." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "يحد عدد الاستعلامات التي يستطيع المستخدم إرسالها إلى الخادم بكل ساعة." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7226,58 +7246,58 @@ msgstr "" "يحد عدد الأوامر التي ينفذها المستخدم بكل ساعة، والتي تغير أي جدول أو قاعدة " "بيانات." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "ليس له أي تأثير في نسخة MySQL الحالية." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "مطلوب لتوابع لاستنساخ." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "يسمح بقراءة البيانات." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "يسمح بإيقاف عمل الخادم." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7286,157 +7306,157 @@ msgstr "" "يسمح بالاتصال، حتى لو وصل حد عدد الاتصالات للأقصى.، مطلوب للمهام الإدارية " "كضبط الإعدادات العامة other users." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "يسمح بتعديل البيانات." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "لا صلاحيات." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "لا شيء" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "صلاحيات عامة" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "إدارة" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "حدود المصادر" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "بيانات الدخول" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "لاتغير كلمة السر" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "المستخدم(ون) لم يتم إيجادهم." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "اسم المستخدم %s موجود مسبقاً!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "لقد جددت وحدثت الإمتيازات لـ %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "لقد أبطلت الامتيازات لـ %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "تم تغيير كلمة المرور لـ %s بنجاح." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "قيد حذف %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "قيد إعادة قراءة الصلاحيات." -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "تحرير الامتيازات" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "إبطال" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "أي" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "معلومات المستخدم" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "منح" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "أضف مستخدم جديد" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "احذف المستخدمين المحددين" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7449,91 +7469,91 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "إضافة الصلاحيات على قاعدة البيانات التالية" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr " ... أبق القديم." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... احذف القديم من جداول المستخدمين." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "لا شيء" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "عام" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "حرف شامل" @@ -8419,7 +8439,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8825,12 +8845,12 @@ msgstr "" msgid "Validated SQL" msgstr "التحقق من استعلام SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "علامة" @@ -8839,71 +8859,71 @@ msgstr "علامة" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "دالة" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " بسبب طوله,
فمن المحتمل أن هذا الحقل غير قابل للتحرير " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "ثنائي - لاتحرره" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "وبعدها" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "عدل الصف التالي" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9007,12 +9027,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -9501,11 +9521,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "الوصف" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "ليس لديك الحقوق الكافية بأن تكون هنا الآن!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "لقد تم تجديد العرض الجانبي." diff --git a/po/az.po b/po/az.po index e803661310..e36f850888 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Hamısını göster" @@ -34,17 +34,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Axtarış" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -59,14 +62,14 @@ msgstr "Axtarış" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -118,7 +121,7 @@ msgid "Database comment: " msgstr "Baza qısa izahatı: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Cedvel haqqında qısa izahat" @@ -129,7 +132,7 @@ msgstr "Cedvel haqqında qısa izahat" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -144,8 +147,8 @@ msgstr "Sütun adları" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -157,13 +160,13 @@ msgstr "Tip" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -182,8 +185,8 @@ msgid "Links to" msgstr "Links to" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -199,10 +202,10 @@ msgstr "Qısa İzahatlar" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Xeyir" @@ -218,10 +221,10 @@ msgstr "Xeyir" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -248,7 +251,7 @@ msgstr "Hamısını Seç" msgid "Unselect All" msgstr "Heç birini seçme" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 #, fuzzy msgid "The database name is empty!" msgstr "Cedveli adı boşdur!" @@ -263,75 +266,75 @@ msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" msgid "Database %s has been copied to %s" msgstr "%s cedveli %s - e kopyalandı." -#: db_operations.php:365 +#: db_operations.php:366 #, fuzzy msgid "Rename database to" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Komanda Tipi" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy msgid "Remove database" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "%s bazası leğv edildi." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:442 +#: db_operations.php:445 #, fuzzy msgid "Copy database to" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Sadece quruluş" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Quruluş ve me'lumat" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Sadece me'lumat" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT deyeri elave et" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:483 +#: db_operations.php:486 #, fuzzy msgid "Switch to copied database" msgstr "Kopyalanmış cedvele keç" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 @@ -339,7 +342,7 @@ msgstr "Kopyalanmış cedvele keç" msgid "Collation" msgstr "Quruluş" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -351,24 +354,24 @@ msgstr "" "Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " "passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relational schema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Cedvel" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -379,33 +382,33 @@ msgstr "Sıra sayı" msgid "Size" msgstr "Boy" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "istifadede" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Quruluş" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "En son yenilenme" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "En son yoxlama" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -414,7 +417,7 @@ msgstr[0] "%s cedvel" msgstr[1] "%s cedvel" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -444,7 +447,7 @@ msgid "Descending" msgstr "Azalan sırada" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Göster" @@ -465,8 +468,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "ya da" @@ -539,17 +542,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)" msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "İçindekiler" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -594,157 +599,142 @@ msgstr "Inside table(s):" msgid "Inside column:" msgstr "Inside table(s):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Elave et" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Quruluş" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Leğv et" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Boşalt" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "%s cedveli boşaldıldı" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s sahesi leğv edildi" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "%s cedveli leğv edildi" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 #, fuzzy msgid "Replication" msgstr "Relations" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Cemi" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Seçilenleri:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Hamısını Seç" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Heç Birini Seçme" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Eksport" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Boşalt" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Leğv et" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Cedveli yoxla" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Cedveli optimallaşdır" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Cedveli te'mir et" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Cedveli analiz et" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Me'lumat lüğeti" @@ -752,13 +742,13 @@ msgstr "Me'lumat lüğeti" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -785,8 +775,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Fealiyyetler" @@ -833,12 +823,12 @@ msgstr "Cedveli yoxla" msgid "Database Log" msgstr "Me'lumat Bazası" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -909,7 +899,7 @@ msgstr "Bookmark silindi." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -932,7 +922,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Geri" @@ -1013,11 +1003,11 @@ msgstr "Host adı boşdur!" msgid "The user name is empty!" msgstr "İstifadeçi adı boş qaldı!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" @@ -1117,117 +1107,123 @@ msgid "Searching" msgstr "Axtarış" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL sorğusu" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL sorğusu" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Motorlar" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Diqqete Alma" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Ümumi elaqe variantları" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Ümumi elaqe variantları" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Söndürülüb" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Gösterilecek Saheni Seç" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Parolu Deyişdir" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Qurucu" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Parolu Deyişdir" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Baz Ert" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Heç biri" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Evvelki" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1235,96 +1231,96 @@ msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Cemi" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binary" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "May" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "İyun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "İyul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avq" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1332,176 +1328,176 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dek" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Baz" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Baz Ert" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Çerş Axş" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cüme" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Baz" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Çerş Axş" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çerş" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cüme Axş" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cüme" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şen" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "istifadede" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1576,9 +1572,9 @@ msgid "Comment" msgstr "Qısa İzahatlar" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Deyişdir" @@ -1599,15 +1595,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Me'lumat Bazaları" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Xeta" @@ -1844,6 +1840,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Elave et" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Quruluş" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1910,7 +1932,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1966,7 +1988,7 @@ msgstr "MySQL deyir: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL-i İzah Et" @@ -1978,11 +2000,11 @@ msgstr "SQL İzah Et-i Keç" msgid "Without PHP Code" msgstr "PHP Kodunu Gösterme" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1991,7 +2013,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "SQL İfadesini Yoxlama" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL Tesdiqle" @@ -2091,7 +2113,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2115,14 +2137,14 @@ msgid "Select from the web server upload directory %s:" msgstr "web-server upload direktoriyası" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Quruluş" @@ -2253,7 +2275,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2263,15 +2285,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Qeyd Et" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Yenile" @@ -2393,137 +2415,133 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Bir sonrakı setre keç" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Xüsusiyyetleri Göster" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Fayl olaraq qeyd et" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Faylın Charset-i:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Sıxışdırma" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2533,71 +2551,71 @@ msgstr "Sıxışdırma" msgid "Put columns names in the first row" msgstr "Sahe adlarını birinci setre yerleşdir" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Saheler ehate edildiyi işare" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Sahelerin escape edildiyi işare" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "NULL-u bununla deyişdir" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Setir leğvedicisi (Lines terminated by)" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Setir leğvedicisi (Lines terminated by)" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel versiyası" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Fayl adı nomenklaturası" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Fayl adı nomenklaturası" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Fayl adı nomenklaturası" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2605,200 +2623,200 @@ msgstr "Fayl adı nomenklaturası" msgid "Dump table" msgstr "%s cedvel" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Cedvel başlığını daxil et" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Cedvel başlığı" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Cedvel başlığının davamı" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Etiket açarı" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-tipi" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Eksport şekli" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Mövcud fayl(lar)ın üzerine yaz" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Fayl adı nomenklaturası" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Cedvel ve sahe adlarını tek dırnaq arasına al" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Quruluş/Deyişdirilme/Yoxlama tarixleri" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy msgid "Use delayed inserts" msgstr "Genişletilmiş girişli" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Genişletilmiş girişli" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Eksport şekli" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Eksport şekli" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV verilenleri" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "General" msgstr "Qurucu" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2806,208 +2824,208 @@ msgstr "" msgid "Import" msgstr "Eksport" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Faylları import et" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Cedveller" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentasiya" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Sehife Nömresi:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentasiya" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL sorğusu" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL sorğusu" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL sorğusu" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-tarixçesi" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3015,280 +3033,280 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Cedvel" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Use text field" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Sahe adlarını birinci setre yerleşdir" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT deyeri elave et" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Sütun Qısa İzahatını Deyişdir" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3296,427 +3314,427 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Resource limits" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Cedvel sırasına buna göre yeniden qur" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Elaqeler" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Cedvel yoxdur" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "Quraşdırılmış Serverler" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3725,301 +3743,301 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Me'lumat Bazası" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Quraşdırılmış Serverler" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Cedveli te'mir et" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Quraşdırılmış Serverler" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Sütun Qısa İzahatını Deyişdir" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Variantlar" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Avtomatik qurtarma rejimi" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "Cedvelleri göster" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Emrleri Tam Olaraq Göster" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Sıra Statistikası" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4027,122 +4045,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Parol" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "İstifadeçi Adı:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Başlanğıc deyeri" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4150,58 +4168,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4222,72 +4240,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Me'lumat bazası eksport variantları" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Me'lumat" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel verilenleri üçün CSV" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4326,7 +4344,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4355,8 +4373,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Selahiyyetler" @@ -4368,7 +4386,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4397,18 +4415,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Parolu Deyişdir" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Parol Yoxdur" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-type" @@ -4429,8 +4447,8 @@ msgstr "Yeni me'lumat bazası qur" msgid "Create" msgstr "Qur" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Selahiyyet çatışmazlığı" @@ -4567,8 +4585,8 @@ msgid "Compression:" msgstr "Sıxışdırma" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Heç biri" @@ -4726,7 +4744,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4763,8 +4781,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4782,49 +4800,49 @@ msgstr "" msgid "The row has been deleted" msgstr "Setir silindi" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Söndür" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Gösterilen setirler" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "cemi" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Deyişdir" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF sxemini göster" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Link tapılmadı" @@ -5249,12 +5267,12 @@ msgid "Data dump options" msgstr "Me'lumat bazası eksport variantları" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Sxemi çıxarılan cedvel" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Table structure for table" @@ -5307,9 +5325,9 @@ msgstr "Mövcud olan MIME-tipleri" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -5455,43 +5473,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "Prosesler" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Funksiya" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Sadece quruluş" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5524,43 +5542,43 @@ msgstr "SQL result" msgid "Generated by" msgstr "Qurucu" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5611,7 +5629,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5688,7 +5706,7 @@ msgid "Charset" msgstr "Charset" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binary" @@ -5977,8 +5995,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "İstifadeçi adı" @@ -5997,7 +6015,7 @@ msgid "Variable" msgstr "Deyişen" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Deyer" @@ -6017,34 +6035,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Her hansı istifadeçi" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Her hansı host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Yerli" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Bu Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6302,11 +6320,11 @@ msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder" msgid "Columns" msgstr "Sütun adları" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6338,7 +6356,7 @@ msgstr "Sadece göster" msgid "Location of the text file" msgstr "tekst faylından yükleyerek" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "web-server upload direktoriyası" @@ -6505,21 +6523,21 @@ msgstr "" "No Description is available for this transformation.
Please ask the " "author, what %s does." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Depolama Motorları" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Yeni sahe elave et" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6738,8 +6756,8 @@ msgstr "Ümumi elaqe variantları" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "İstifadeçi" @@ -6777,7 +6795,7 @@ msgstr "phpMyAdmin Resmi İnternet Sehifesi" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6788,21 +6806,21 @@ msgstr "" "istifadeçisi) mövcuddur ki, bu da tehlükesizlik nöqteyi nezerinden e'tibarlı " "deyildir." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6810,18 +6828,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6830,21 +6848,21 @@ msgstr "" "Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " "passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7178,115 +7196,115 @@ msgstr "MySQL Depolama Motorları" msgid "View dump (schema) of databases" msgstr "Me'lumat bazalarının sxemini göster" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT-dan başqa bütün selahiyyetler daxildir." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Yeni bazalar ve cedveller qurmağa icaze verir." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Keçici cedveller qurmağa icaze verir." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Me'lumat silmeye icaze verir." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Baza ve cedvel leğv etmeye icaze verir." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Cedvelleri leğv etmeye icaze verir." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7294,59 +7312,59 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7356,159 +7374,159 @@ msgstr "" "Required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Selahiyyet te'yin edilmedi." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Heç biri" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Cedvelexas selahiyyetler" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Qlobal selahiyyetler" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Me'lumat Bazasına Mexsus Selahiyyetler" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrasiya" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Qeyd: Bu variantları 0 (sıfır)-a çevirmek hüdudu (limiti) qaldıracaq." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Sisteme Giriş Me'lumatı" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Parolu deyişdirme" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "İstifadeçi(ler) tapılmadı." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Yeni istifadeçi elave etdiniz." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "%s üçün parol müveffeqiyyetle deyişdirilmişdir." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "%s silinir" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Selahiyyetleri Deyişdir" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Her hansı" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "İcaze ver" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Yeni İstifadeçi elave Et" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, fuzzy, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7521,48 +7539,48 @@ msgstr "" "içerisindekiler webserver-in istifade etdiklerinden ferqli ola biler. Bu " "halda, davam etmeden evvel, selahiyyetleri %syeniden yüklemelisiniz%s." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Sütunaxas Selahiyyetler" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... köhnesini saxla." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... istifadeçi cedvellerinden köhnesini sil." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7570,44 +7588,44 @@ msgstr "" " ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri " "yeniden yükle." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Heç biri" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "qlobal" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "bazayaxas" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "xüsusi işare" @@ -8504,7 +8522,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8914,12 +8932,12 @@ msgstr "" msgid "Validated SQL" msgstr "SQL Tesdiqle" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etiket" @@ -8928,72 +8946,72 @@ msgstr "Etiket" msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funksiya" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "" " Uzun olduğuna göre,
bu sahedeki me'lumatlar deyişdirilmeye biler " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binary - deyişiklik etme" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Yeni setir olaraq elave et" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9097,12 +9115,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s cedveli leğv edildi" @@ -9595,11 +9613,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Haqqında" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Burada olma haqqınız yoxdur!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil yenilendi." diff --git a/po/be.po b/po/be.po index aafe278922..313956e91f 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Паказаць усе" @@ -37,17 +37,20 @@ msgstr "" "акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне " "міжваконных ўзаемадзеяньняў" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Пошук" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "Пошук" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -123,7 +126,7 @@ msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Камэнтар да табліцы" @@ -134,7 +137,7 @@ msgstr "Камэнтар да табліцы" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -149,8 +152,8 @@ msgstr "Назвы калёнак" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -162,13 +165,13 @@ msgstr "Тып" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Нуль" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -187,8 +190,8 @@ msgid "Links to" msgstr "Зьвязаная з" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -204,10 +207,10 @@ msgstr "Камэнтары" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Не" @@ -223,10 +226,10 @@ msgstr "Не" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -253,7 +256,7 @@ msgstr "Выбраць усё" msgid "Unselect All" msgstr "Зьняць усе адзнакі" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Імя базы дадзеных не пазначанае!" @@ -267,80 +270,80 @@ msgstr "База дадзеных %s была перайменаваная ў %s msgid "Database %s has been copied to %s" msgstr "База дадзеных %s была скапіяваная ў %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Каманда" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "База дадзеных %s была выдаленая." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Базы дадзеных адсутнічаюць" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Капіяваць базу дадзеных у" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Толькі структуру" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структуру і дадзеныя" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Толькі дадзеныя" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "выканаць CREATE DATABASE перад капіяваньнем" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Дадаць %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Дадаць абмежаваньні" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Перайсьці да скапіяванай базы дадзеных" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Супастаўленьне" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -352,24 +355,24 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Рэляцыйная схема" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Табліца" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -380,33 +383,33 @@ msgstr "Радкі" msgid "Size" msgstr "Памер" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "выкарыстоўваецца" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Створаная" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Апошняе абнаўленьне" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Апошняя праверка" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -415,7 +418,7 @@ msgstr[0] "%s табліц(ы)" msgstr[1] "%s табліц(ы)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -445,7 +448,7 @@ msgid "Descending" msgstr "адваротны" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Паказаць" @@ -466,8 +469,8 @@ msgid "Del" msgstr "Выдаліць" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Або" @@ -540,17 +543,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s супадзеньняў у табліцы %s" msgstr[1] "%s супадзеньняў у табліцы %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Прагляд" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -595,69 +600,30 @@ msgstr "У табліцы(ах):" msgid "Inside column:" msgstr "Унутры поля:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Уставіць" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Структура" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Выдаліць" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Ачысьціць" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Табліца %s была ачышчаная" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Выгляд %s быў выдалены" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Табліца %s была выдаленая" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -666,89 +632,113 @@ msgstr "" "Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %" "sдакумэнтацыі%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Выгляд" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Рэплікацыя" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Усяго" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s зьяўляецца машынай захаваньня дадзеных па змоўчаньні на гэтым MySQL-" "сэрвэры." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "З адзначанымі:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Адзначыць усё" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Зьняць усе адзнакі" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Экспарт" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Ачысьціць" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Выдаліць" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Праверыць табліцу" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Аптымізаваць табліцу" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Рамантаваць табліцу" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Аналізаваць табліцу" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Слоўнік дадзеных" @@ -757,13 +747,13 @@ msgstr "Слоўнік дадзеных" msgid "Tracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -791,8 +781,8 @@ msgstr "Стан" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Дзеяньне" @@ -840,12 +830,12 @@ msgstr "Праверыць табліцу" msgid "Database Log" msgstr "База дадзеных" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -926,7 +916,7 @@ msgstr "Закладка была выдаленая." msgid "Showing bookmark" msgstr "Паказваючы закладку" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створаная" @@ -954,7 +944,7 @@ msgstr "" "вы не павялічыце ліміты выкананьня php-скрыптоў." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Назад" @@ -1034,11 +1024,11 @@ msgstr "Пустое імя хосту!" msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" @@ -1143,113 +1133,119 @@ msgid "Searching" msgstr "Пошук" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL-запыт" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL-запыт" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Машыны" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Сувязь выдаленая" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Сувязь FOREIGN KEY была дададзеная" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Унутраная сувязь дададзеная" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Памылка: сувязь не дададзеная." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Памылка: сувязь ужо існуе." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Памылка захаваньня каардынатаў." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Адключана" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Выберыце поле для адлюстраваньня" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Згенэраваць" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Зьмяніць пароль" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пан" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "Дадзеныя" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Папярэдняя старонка" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1257,96 +1253,96 @@ msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Тра" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1354,178 +1350,178 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Сьн" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1603,9 +1599,9 @@ msgid "Comment" msgstr "Камэнтар" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Рэдагаваць" @@ -1628,15 +1624,15 @@ msgstr "" "Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь " "іх, магчыма, можна выдаліць." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Базы дадзеных" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Памылка" @@ -1886,6 +1882,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Уставіць" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Структура" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1955,7 +1977,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Сэрвэр" @@ -2011,7 +2033,7 @@ msgstr "Адказ MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Тлумачыць SQL" @@ -2023,11 +2045,11 @@ msgstr "Не тлумачыць SQL" msgid "Without PHP Code" msgstr "Без PHP-коду" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Стварыць PHP-код" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Абнавіць" @@ -2036,7 +2058,7 @@ msgstr "Абнавіць" msgid "Skip Validate SQL" msgstr "Не правяраць SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Праверыць SQL" @@ -2137,7 +2159,7 @@ msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2161,14 +2183,14 @@ msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Структура" @@ -2298,7 +2320,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2308,15 +2330,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Захаваць" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Скінуць" @@ -2438,140 +2460,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Перайменаваць базу дадзеных у" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Перайменаваць базу дадзеных у" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Перайменаваць базу дадзеных у" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Рэдагаваць наступны радок" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Паказваць магчымасьці" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Захаваць як файл" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Кадыроўка файла:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Фармат" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Сьціск" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2581,71 +2599,71 @@ msgstr "Сьціск" msgid "Put columns names in the first row" msgstr "Пазначыць назвы палёў у першым радку" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Палі ўзятыя ў" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Палі экрануюцца" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Замяняць NULL на" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Радкі падзеленыя" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Радкі падзеленыя" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Вэрсія Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2653,411 +2671,411 @@ msgstr "Шаблён назвы файла" msgid "Dump table" msgstr "%s табліц(ы)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Уключыць загаловак табліцы" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Загаловак табліцы" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Працягнуты загаловак табліцы" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Ключ меткі" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-тып" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Сувязі" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тып экспарту" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Перазапісваць існуючы(я) файл(ы)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Зваротнае двукосьсе ў імёнах табліц і палёў" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Рэжым сумяшчальнасьці SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Стварэньне/Абнаўленьне/Праверка дат" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Выкарыстоўваць адкладзеныя ўстаўкі" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Адключыць праверку зьнешніх ключоў" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Шаснаццатковыя значэньні для поляў тыпу BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Выкарыстоўваць устаўкі ігнараваньняў" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Максымальная даўжыня створанага запыту" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Тып экспарту" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Экспартаваць за адну транзакцыю" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Тып экспарту" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "Імпартаваць файлы" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Згенэраваць" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Імрарт" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Імпартаваць файлы" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Сэрвэры" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Табліц" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 #, fuzzy msgid "Tables display options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Тэкст Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Старонка:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Authentication" msgstr "Аўтэнтыфікацыя..." -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Аўтэнтыфікацыя..." -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Гісторыя SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3065,72 +3083,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Стан" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Табліца" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Тэкст Texy!" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3141,213 +3159,213 @@ msgstr "" "скончваецца час выкананьня. Гэта можа быць добрым спосабам імпартаваньня " "вялікіх файлаў, аднак, гэта можа перапыніць транзакцыі." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ігнараваць радкі, якія паўтараюцца" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Фармат імпартаванага файла" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Выкарыстоўваць ключавое слова LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Пазначыць назвы палёў у першым радку" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Колькасьць (запытаў), якія трэба прапусьціць ад пачатку" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "Колькасьць адсартаваных радкоў." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Паказваць камэнтары калёнак" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "Вэрсія кліента MySQL" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3355,439 +3373,439 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Абмежаваньні рэсурсаў" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Паказаць/схаваць мэню зьлева" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Зьмяніць парадак табліцы" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Патокаў узнаўленьня" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Хатняя тэчка дадзеных" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy msgid "Host authorization order" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy msgid "Host authorization rules" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy msgid "Authentication method to use" msgstr "Аўтэнтыфікацыя..." -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 #, fuzzy msgid "Authentication type" msgstr "Аўтэнтыфікацыя..." -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Падлучэньні" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Няма табліц" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Дэфрагмэнтаваць табліцу" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "Пашырэньне PHP" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "імя сэрвэра" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3796,302 +3814,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "імя базы дадзеных" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "ID сэрвэра" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Рамантаваць табліцу" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Выбар сэрвэра" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Паказваць камэнтары калёнак" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Выразы" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Рэжым аўтаматычнага ўзнаўленьня" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Паказаць адкрытыя табліцы" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Паказаць поўныя запыты" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Статыстыка радку" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4099,122 +4117,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Паказаць адкрытыя табліцы" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Пароль" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Імя карыстальніка:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "Перайменаваць базу дадзеных у" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4222,59 +4240,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "Хатняя тэчка дадзеных" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4299,74 +4317,74 @@ msgid "Signon authentication" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV з выкарыстаньнем LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Спэцыфікацыя Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Іншы колер" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Налады экспарту базы дадзеных" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Дадзеныя" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV для дадзеных MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Тэкст Open Document" @@ -4405,7 +4423,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Падзеі" @@ -4434,8 +4452,8 @@ msgid "Designer" msgstr "Дызайнэр" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Прывілеі" @@ -4447,7 +4465,7 @@ msgstr "Працэдуры" msgid "Return type" msgstr "Тып працэдуры" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4478,18 +4496,18 @@ msgid "Details..." msgstr "Падрабязьней..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Зьмяніць пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Пацьверджаньне" @@ -4512,8 +4530,8 @@ msgstr "Стварыць новую базу дадзеных" msgid "Create" msgstr "Стварыць" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Без прывілеяў" @@ -4659,8 +4677,8 @@ msgid "Compression:" msgstr "Сьціск" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Няма" @@ -4833,7 +4851,7 @@ msgstr "Сартаваць па ключы" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4868,8 +4886,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Схаваць" @@ -4887,49 +4905,49 @@ msgstr "Выканаць запыт з закладак" msgid "The row has been deleted" msgstr "Радок быў выдалены" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Спыніць" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "па запыту" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Паказаныя запісы" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "усяго" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Зьмяніць" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Вэрсія для друку (з усім тэкстам)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Паказаць PDF-схему" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Сувязь ня знойдзеная" @@ -5409,12 +5427,12 @@ msgid "Data dump options" msgstr "Налады экспарту базы дадзеных" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Дамп дадзеных табліцы" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Структура табліцы" @@ -5471,9 +5489,9 @@ msgstr "Даступныя MIME-тыпы" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -5619,40 +5637,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Працэдуры" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Функцыі" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Абмежаваньні для табліцы" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME-тыпы табліцы" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "Сувязі ў табліцы" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Трыгеры" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Структура для прагляду" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Замяняльная структура для прагляду" @@ -5688,44 +5706,44 @@ msgstr "SQL-вынік" msgid "Generated by" msgstr "Створаны" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5777,7 +5795,7 @@ msgstr "Няправільная колькасьць палёў у CSV-дадз msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Імя табліцы" @@ -5856,7 +5874,7 @@ msgid "Charset" msgstr "Кадыроўка" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Двайковы" @@ -6142,8 +6160,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Імя карыстальніка" @@ -6164,7 +6182,7 @@ msgid "Variable" msgstr "Зьменная" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Значэньне" @@ -6183,34 +6201,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Любы карыстальнік" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Любы хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Лякальны" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Гэты хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Выкарыстоўваць табліцу хостаў" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6467,11 +6485,11 @@ msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s" msgid "Columns" msgstr "Назвы калёнак" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" @@ -6503,7 +6521,7 @@ msgstr "Толькі прагляд" msgid "Location of the text file" msgstr "Месцазнаходжаньне тэкставага файла" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" @@ -6673,22 +6691,22 @@ msgstr "" "Няма даступных апісаньняў для гэтага пераўтварэньня.
Калі ласка, " "спытайце аўтара, што робіць %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Машына захаваньня дадзеных" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Азначэньне PARTITION" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Дадаць %s новыя палі" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6942,8 +6960,8 @@ msgstr "Магчымасьці асноўных сувязяў" msgid "Protocol version" msgstr "Вэрсія пратаколу" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Карыстальнік" @@ -6980,7 +6998,7 @@ msgstr "Афіцыйная старонка phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6993,7 +7011,7 @@ msgstr "" "зьнешняга ўрываньня, і таму вам абавязкова трэба выправіць гэтую хібу ў " "бясьпецы." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7002,7 +7020,7 @@ msgstr "" "Вы ўключылі mbstring.func_overload у вашым канфігурацыйным файле PHP. Гэтая " "опцыя несумяшчальная з phpMyAdmin і можа выклікаць пашкоджаньне дадзеных!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7012,7 +7030,7 @@ msgstr "" "шматбайтавую кадыроўку. Без пашырэньня mbstring phpMyAdmin ня можа падзяляць " "радкі карэктна, і гэта можа прывесьці да нечаканых вынікаў." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7020,19 +7038,19 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Канфігурацыйнаму файлу зараз патрэбная сакрэтная фраза (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7041,14 +7059,14 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7057,7 +7075,7 @@ msgstr "" "Вэрсія вашай бібліятэкі MySQL для PHP %s адрозьніваецца ад вэрсіі вашага " "сэрвэра MySQL %s. Гэта можа выклікаць непрадказальныя паводзіны." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7402,119 +7420,119 @@ msgstr "Машыны захаваньня дадзеных" msgid "View dump (schema) of databases" msgstr "Праглядзець дамп (схему) базаў дадзеных" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Уключае ўсе прывілеі, апроч GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Дазваляе зьмяняць структуру існых табліц." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Дазваляе ствараць праграмы, якія захоўваюцца." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Дазваляе ствараць новыя табліцы." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Дазваляе ствараць часовыя табліцы." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Дазваляе ствараць новыя прагляды." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Дазваляе выдаляць дадзеныя." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Дазваляе выдаляць базы дадзеных і табліцы." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Дазваляе выдаляць табліцы." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дазваляе дадаваць карыстальнікаў і прывілеі без перазагрузкі табліц " "прывілеяў." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Дазваляе ствараць і выдаляць індэксы." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Дазваляе блякаваць табліцы для бягучага патоку." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Абмяжоўвае колькасьць новых злучэньняў, якія карыстальнік можа адкрыць на " "працягу гадзіны." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Абмяжоўвае колькасьць запытаў, якія карыстальнік можа адправіць на сэрвэр на " "працягу гадзіны." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7522,59 +7540,59 @@ msgstr "" "Абмяжоўвае колькасьць камандаў, зьмяняючых любую табліцу або базу дадзеных, " "якія карыстальнік можа выканаць на працягу гадзіны." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Не працуе ў гэтай вэрсіі MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Неабходна для рэплікацыі slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Дазваляе чытаць дадзеныя." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Дае доступ да поўнага сьпісу базаў дадзеных." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Дазваляе спыняць сэрвэр." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7584,157 +7602,157 @@ msgstr "" "Патрабуецца для большасьці адміністратыўных апэрацыяў, такіх як вызначэньне " "глябальных зьменных або спыненьне патокаў іншых карыстальнікаў." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Дазваляе стварэньне і выдаленьне трыгераў" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Дазваляе зьмяняць дадзеныя." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Без прывілеяў." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Няма" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Глябальныя прывілеі" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Адміністраваньне" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Абмежаваньні рэсурсаў" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Інфармацыя пра ўваход" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Не зьмяняць пароль" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знойдзены карыстальнік." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Карыстальнік %s ужо існуе!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы зьмянілі прывілеі для %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Вы анулявалі прывілеі для %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s пасьпяхова зьменены." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Выдаленьне %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "На выбраныя карыстальнікі для выдаленьня!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Перазагрузіць прывілеі" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Рэдагаваць прывілеі" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Ануляваць" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Любы" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Карыстальнікі" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Дадаць новага карыстальніка" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Выдаліць выбраных карыстальнікаў" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7747,50 +7765,50 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Дадаць прывілеі на наступную базу" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх " "літаральнага выкарыстаньня" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... пакінуць старога." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... выдаліць старога з табліцы карыстальнікаў." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7798,45 +7816,45 @@ msgstr "" " ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць " "прывілеі." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "База дадзеных для карыстальніка" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Няма" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Праверыць прывілеі для базы "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Карыстальнікі з правамі доступу да "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "глябальны" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "шаблён" @@ -8862,7 +8880,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9277,12 +9295,12 @@ msgstr "У выглядзе SQL-запыту" msgid "Validated SQL" msgstr "Праверыць SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Метка" @@ -9291,74 +9309,74 @@ msgstr "Метка" msgid "Table %1$s has been altered successfully" msgstr "Табліца %1$s была пасьпяхова зьмененая" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Функцыя" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " З-за вялікай даўжыні,
гэтае поле ня можа быць адрэдагаванае " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Двайковыя дадзеныя — не рэдагуюцца" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "і пасьля" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9469,12 +9487,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Табліца %s ужо існуе!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Табліца %1$s створаная." @@ -9969,11 +9987,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Апісаньне" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Вы ня маеце дастатковых прывілеяў быць у гэтым месцы ў гэты час!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Профіль быў адноўлены." diff --git a/po/be@latin.po b/po/be@latin.po index 2ebb242915..3c0177e870 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -16,7 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Pakazać usie" @@ -39,17 +39,20 @@ msgstr "" "akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie " "mižvakonnych ŭzajemadziejańniaŭ" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pošuk" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "Pošuk" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -125,7 +128,7 @@ msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Kamentar da tablicy" @@ -136,7 +139,7 @@ msgstr "Kamentar da tablicy" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -151,8 +154,8 @@ msgstr "Nazvy kalonak" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -164,13 +167,13 @@ msgstr "Typ" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nul" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -189,8 +192,8 @@ msgid "Links to" msgstr "Źviazanaja z" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -206,10 +209,10 @@ msgstr "Kamentary" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nie" @@ -225,10 +228,10 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgstr "Vybrać usio" msgid "Unselect All" msgstr "Źniać usie adznaki" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Imia bazy dadzienych nie paznačanaje!" @@ -269,81 +272,81 @@ msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s" msgid "Database %s has been copied to %s" msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Kamanda" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Baza dadzienych %s była vydalenaja." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tolki strukturu" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strukturu i dadzienyja" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tolki dadzienyja" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "vykanać CREATE DATABASE pierad kapijavańniem" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dadać %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Dadać abmiežavańni" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Pierajści da skapijavanaj bazy dadzienych" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Supastaŭleńnie" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -355,24 +358,24 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relacyjnaja schiema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tablica" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -383,33 +386,33 @@ msgstr "Radki" msgid "Size" msgstr "Pamier" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "vykarystoŭvajecca" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Stvoranaja" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Apošniaje abnaŭleńnie" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Apošniaja pravierka" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -419,7 +422,7 @@ msgstr[1] "%s tablic(y)" msgstr[2] "%s tablic(y)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -449,7 +452,7 @@ msgid "Descending" msgstr "advarotny" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Pakazać" @@ -470,8 +473,8 @@ msgid "Del" msgstr "Vydalić" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Abo" @@ -545,17 +548,19 @@ msgstr[0] "%s supadzieńniaŭ u tablicy %s" msgstr[1] "%s supadzieńniaŭ u tablicy %s" msgstr[2] "%s supadzieńniaŭ u tablicy %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Prahlad" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -601,69 +606,30 @@ msgstr "U tablicy(ach):" msgid "Inside column:" msgstr "Unutry pola:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Ustavić" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Vydalić" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Ačyścić" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s była ačyščanaja" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Vyhlad %s byŭ vydaleny" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s była vydalenaja" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -672,89 +638,113 @@ msgstr "" "Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %" "sdakumentacyi%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Vyhlad" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikacyja" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Usiaho" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s źjaŭlajecca mašynaj zachavańnia dadzienych pa zmoŭčańni na hetym MySQL-" "servery." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Z adznačanymi:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Adznačyć usio" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Źniać usie adznaki" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Ekspart" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Ačyścić" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Vydalić" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Pravieryć tablicu" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Aptymizavać tablicu" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Ramantavać tablicu" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizavać tablicu" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Słoŭnik dadzienych" @@ -762,13 +752,13 @@ msgstr "Słoŭnik dadzienych" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -794,8 +784,8 @@ msgstr "Stan" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Dziejańnie" @@ -838,12 +828,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -924,7 +914,7 @@ msgstr "Zakładka była vydalenaja." msgid "Showing bookmark" msgstr "Pakazvajučy zakładku" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s stvoranaja" @@ -952,7 +942,7 @@ msgstr "" "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Nazad" @@ -1032,11 +1022,11 @@ msgstr "Pustoje imia chostu!" msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" @@ -1141,114 +1131,122 @@ msgid "Searching" msgstr "Pošuk" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "pa zapytu" #: js/messages.php:85 #, fuzzy +#| msgid "Showing SQL query" +msgid "Show query box" +msgstr "U vyhladzie SQL-zapytu" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Mašyny" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Suviaź vydalenaja" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Suviaź FOREIGN KEY była dadadzienaja" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Unutranaja suviaź dadadzienaja" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Pamyłka: suviaź nie dadadzienaja." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Pamyłka: suviaź užo isnuje." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Pamyłka zachavańnia kaardynataŭ." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Adklučana" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vybierycie pole dla adlustravańnia" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Zgieneravać" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Źmianić parol" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pan" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nijakaja" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Papiaredniaja staronka" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1256,96 +1254,96 @@ msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Tra" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1353,178 +1351,178 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Śn" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1603,9 +1601,9 @@ msgid "Comment" msgstr "Kamentar" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Redagavać" @@ -1628,15 +1626,15 @@ msgstr "" "Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź " "ich, mahčyma, možna vydalić." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Bazy dadzienych" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Pamyłka" @@ -1886,6 +1884,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Ustavić" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktura" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Databases statistics" @@ -1957,7 +1981,7 @@ msgstr "" "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "kanfihurycyju." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -2011,7 +2035,7 @@ msgstr "Adkaz MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Tłumačyć SQL" @@ -2023,11 +2047,11 @@ msgstr "Nie tłumačyć SQL" msgid "Without PHP Code" msgstr "Biez PHP-kodu" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Abnavić" @@ -2036,7 +2060,7 @@ msgstr "Abnavić" msgid "Skip Validate SQL" msgstr "Nie praviarać SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Pravieryć SQL" @@ -2138,7 +2162,7 @@ msgstr "" "na %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2162,14 +2186,14 @@ msgid "Select from the web server upload directory %s:" msgstr "tečka web-servera dla zahruzki fajłaŭ" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2299,7 +2323,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2309,15 +2333,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Zachavać" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Skinuć" @@ -2438,137 +2462,133 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Relational display field" msgid "Default display direction" msgstr "Adlustravanaje pole suviazi" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Redagavać nastupny radok" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Pakazvać mahčymaści" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Zachavać jak fajł" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Farmat" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Ścisk" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2578,68 +2598,68 @@ msgstr "Ścisk" msgid "Put columns names in the first row" msgstr "Paznačyć nazvy paloŭ u pieršym radku" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Pali ŭziatyja ŭ" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Pali ekranujucca" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Zamianiać NULL na" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Radki padzielenyja" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Radki padzielenyja" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Versija Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2647,403 +2667,403 @@ msgstr "" msgid "Dump table" msgstr "%s tablic(y)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Uklučyć zahałovak tablicy" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Zahałovak tablicy" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Praciahnuty zahałovak tablicy" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Kluč mietki" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-typ" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Suviazi" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Typ ekspartu" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Pierazapisvać isnujučy(ja) fajł(y)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Režym sumiaščalnaści SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Stvareńnie/Abnaŭleńnie/Pravierka dat" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Vykarystoŭvać adkładzienyja ŭstaŭki" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Šasnaccatkovyja značeńni dla polaŭ typu BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Vykarystoŭvać ustaŭki ignaravańniaŭ" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maksymalnaja daŭžynia stvoranaha zapytu" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Ekspart" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Ekspartavać za adnu tranzakcyju" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Zgieneravać" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Imrart" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servery" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tablic" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Tekst Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Staronka:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authenticating..." msgid "Authentication" msgstr "Aŭtentyfikacyja..." -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authenticating..." msgid "Authentication settings" msgstr "Aŭtentyfikacyja..." -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" msgstr "Nałady i źmiennyja servera" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Historyja SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3051,281 +3071,281 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Tekst Texy!" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignaravać radki, jakija paŭtarajucca" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Farmat impartavanaha fajła" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Vykarystoŭvać klučavoje słova LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, 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:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Pakazvać kamentary kalonak" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3333,426 +3353,426 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Pakazać/schavać meniu źleva" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Źmianić paradak tablicy" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Patokaŭ uznaŭleńnia" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3761,297 +3781,297 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "imia bazy dadzienych" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Pakazvać kamentary kalonak" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Vyrazy" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Pakazać adkrytyja tablicy" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4059,121 +4079,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Parol" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Pa zmoŭčańni" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4181,58 +4201,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4261,45 +4281,45 @@ msgid "Signon authentication" msgstr "Aŭtentyfikacyja..." #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV z vykarystańniem LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Specyfikacyja Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Inšy koler" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Database export options" msgid "Database export options" @@ -4307,30 +4327,30 @@ msgstr "Nałady ekspartu bazy dadzienych" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Dadzienyja" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV dla dadzienych MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Tekst Open Document" @@ -4369,7 +4389,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Padziei" @@ -4398,8 +4418,8 @@ msgid "Designer" msgstr "Dyzajner" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Pryvilei" @@ -4411,7 +4431,7 @@ msgstr "Pracedury" msgid "Return type" msgstr "Typ pracedury" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4442,18 +4462,18 @@ msgid "Details..." msgstr "Padrabiaźniej..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Źmianić parol" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Biez parola" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Paćvierdžańnie" @@ -4476,8 +4496,8 @@ msgstr "Stvaryć novuju bazu dadzienych" msgid "Create" msgstr "Stvaryć" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Biez pryvilejaŭ" @@ -4623,8 +4643,8 @@ msgid "Compression:" msgstr "Ścisk" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Nijakaja" @@ -4798,7 +4818,7 @@ msgstr "Sartavać pa klučy" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4833,8 +4853,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Schavać" @@ -4852,49 +4872,49 @@ msgstr "Vykanać zapyt z zakładak" msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Spynić" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "pa zapytu" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Pakazanyja zapisy" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "usiaho" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Źmianić" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Versija dla druku (z usim tekstam)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Pakazać PDF-schiemu" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Suviaź nia znojdzienaja" @@ -5378,12 +5398,12 @@ msgid "Data dump options" msgstr "Nałady ekspartu bazy dadzienych" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Damp dadzienych tablicy" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktura tablicy" @@ -5440,9 +5460,9 @@ msgstr "Dastupnyja MIME-typy" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Chost" @@ -5588,40 +5608,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Pracedury" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funkcyi" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Abmiežavańni dla tablicy" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME-typy tablicy" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "Suviazi ŭ tablicy" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Tryhiery" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struktura dla prahladu" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Zamianialnaja struktura dla prahladu" @@ -5656,42 +5676,42 @@ msgstr "SQL-vynik" msgid "Generated by" msgstr "Stvorany" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5743,7 +5763,7 @@ msgstr "Niapravilnaja kolkaść paloŭ u CSV-dadzienych u radku %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Imia tablicy" @@ -5822,7 +5842,7 @@ msgid "Charset" msgstr "Kadyroŭka" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Dvajkovy" @@ -6108,8 +6128,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Imia karystalnika" @@ -6128,7 +6148,7 @@ msgid "Variable" msgstr "Źmiennaja" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Značeńnie" @@ -6147,34 +6167,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Luby karystalnik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Luby chost" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lakalny" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Hety chost" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Vykarystoŭvać tablicu chostaŭ" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6428,11 +6448,11 @@ msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s" msgid "Columns" msgstr "Nazvy kalonak" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" @@ -6464,7 +6484,7 @@ msgstr "Tolki prahlad" msgid "Location of the text file" msgstr "Miescaznachodžańnie tekstavaha fajła" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "tečka web-servera dla zahruzki fajłaŭ" @@ -6635,22 +6655,22 @@ msgstr "" "Niama dastupnych apisańniaŭ dla hetaha pieraŭtvareńnia. Kali łaska, " "spytajcie aŭtara, što robić %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Mašyna zachavańnia dadzienych" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Aznačeńnie PARTITION" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dadać %s novyja pali" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6907,8 +6927,8 @@ msgstr "Mahčymaści asnoŭnych suviaziaŭ" msgid "Protocol version" msgstr "Versija pratakołu" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Karystalnik" @@ -6945,7 +6965,7 @@ msgstr "Aficyjnaja staronka phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6958,7 +6978,7 @@ msgstr "" "źniešniaha ŭryvańnia, i tamu vam abaviazkova treba vypravić hetuju chibu ŭ " "biaśpiecy." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6967,7 +6987,7 @@ msgstr "" "Vy ŭklučyli mbstring.func_overload u vašym kanfihuracyjnym fajle PHP. Hetaja " "opcyja niesumiaščalnaja z phpMyAdmin i moža vyklikać paškodžańnie dadzienych!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6977,7 +6997,7 @@ msgstr "" "šmatbajtavuju kadyroŭku. Biez pašyreńnia mbstring phpMyAdmin nia moža " "padzialać radki karektna, i heta moža pryvieści da niečakanych vynikaŭ." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6985,19 +7005,19 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Kanfihuracyjnamu fajłu zaraz patrebnaja sakretnaja fraza (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7006,14 +7026,14 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7022,7 +7042,7 @@ msgstr "" "Versija vašaj biblijateki MySQL dla PHP %s adroźnivajecca ad versii vašaha " "servera MySQL %s. Heta moža vyklikać niepradkazalnyja pavodziny." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7365,119 +7385,119 @@ msgstr "Mašyny zachavańnia dadzienych" msgid "View dump (schema) of databases" msgstr "Prahladzieć damp (schiemu) bazaŭ dadzienych" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Uklučaje ŭsie pryvilei, aproč GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Dazvalaje źmianiać strukturu isnych tablic." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Dazvalaje stvarać novyja tablicy." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Dazvalaje stvarać časovyja tablicy." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Dazvalaje stvarać novyja prahlady." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Dazvalaje vydalać dadzienyja." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Dazvalaje vydalać bazy dadzienych i tablicy." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Dazvalaje vydalać tablicy." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Dazvalaje impartavać dadzienyja z fajłaŭ i ekspartavać dadzienyja ŭ fajły." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dazvalaje dadavać karystalnikaŭ i pryvilei biez pierazahruzki tablic " "pryvilejaŭ." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Dazvalaje stvarać i vydalać indeksy." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Abmiažoŭvaje kolkaść novych złučeńniaŭ, jakija karystalnik moža adkryć na " "praciahu hadziny." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Abmiažoŭvaje kolkaść zapytaŭ, jakija karystalnik moža adpravić na server na " "praciahu hadziny." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7485,59 +7505,59 @@ msgstr "" "Abmiažoŭvaje kolkaść kamandaŭ, źmianiajučych lubuju tablicu abo bazu " "dadzienych, jakija karystalnik moža vykanać na praciahu hadziny." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nie pracuje ŭ hetaj versii MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Dazvalaje pierazahružać nałady servera i ačyščać keš servera." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nieabchodna dla replikacyi slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Dazvalaje čytać dadzienyja." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Dazvalaje spyniać server." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7547,158 +7567,158 @@ msgstr "" "Patrabujecca dla bolšaści administratyŭnych aperacyjaŭ, takich jak " "vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Dazvalaje źmianiać dadzienyja." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Biez pryvilejaŭ." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nijakaja" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Hlabalnyja pryvilei" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administravańnie" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Abmiežavańni resursaŭ" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavańnie." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Infarmacyja pra ŭvachod" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nie źmianiać parol" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znojdzieny karystalnik." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Karystalnik %s užo isnuje!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Vy źmianili pryvilei dla %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Vy anulavali pryvilei dla %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Parol dla %s paśpiachova źmienieny." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Vydaleńnie %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Na vybranyja karystalniki dla vydaleńnia!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Pierazahruzić pryvilei" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Redagavać pryvilei" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Anulavać" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Luby" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Karystalniki" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Dadać novaha karystalnika" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Vydalić vybranych karystalnikaŭ" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" "Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7711,96 +7731,96 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Dadać pryvilei na nastupnuju bazu" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Symbali padstanoŭki % i _ musiać być ekranavanymi symbalem \\ dla ich " "litaralnaha vykarystańnia" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... pakinuć staroha." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... vydalić staroha z tablicy karystalnikaŭ." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Baza dadzienych dla karystalnika" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nijakaja" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" "Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "hlabalny" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "šablon" @@ -8822,7 +8842,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9228,12 +9248,12 @@ msgstr "U vyhladzie SQL-zapytu" msgid "Validated SQL" msgstr "Pravieryć SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Mietka" @@ -9242,73 +9262,73 @@ msgstr "Mietka" msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s była paśpiachova źmienienaja" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funkcyja" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Dvajkovyja dadzienyja — nie redagujucca" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "i paśla" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia " "abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9419,12 +9439,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tablica %s užo isnuje!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Tablica %1$s stvoranaja." @@ -9917,11 +9937,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Apisańnie" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Vy nia majecie dastatkovych pryvilejaŭ być u hetym miescy ŭ hety čas!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil byŭ adnoŭleny." diff --git a/po/bg.po b/po/bg.po index 1f556ebfb8..c85d63df69 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-06-11 17:28+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Покажи всички" @@ -38,17 +38,20 @@ msgstr "" "отварящият го прозорец или браузърът Ви е блокирал обновяване на данни от " "един прозорец в друг от съображения за сигурност" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Търсене" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Търсене" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Коментар към базата от данни: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Коментари към таблицата" @@ -133,7 +136,7 @@ msgstr "Коментари към таблицата" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -148,8 +151,8 @@ msgstr "Име на колона" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "Тип" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Празно" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "Сочи към" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "Коментари" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "не" @@ -222,10 +225,10 @@ msgstr "не" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "Селектиране на всичко" msgid "Unselect All" msgstr "Деселектиране на всичко" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Името на базата от данни е празно!" @@ -266,80 +269,80 @@ msgstr "Базата данни %s беше преименувана на %s" msgid "Database %s has been copied to %s" msgstr "База от данни %s беше копирана като %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Преименуване на базата от данни на" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Команда" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Преименуване на базата от данни на" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Базата данни %s беше изтрита." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Няма бази от данни" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Копиране на базата от данни в" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Само структурата" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структурата и данните" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Само данните" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Изпълняване на CREATE DATABASE преди копирането" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Добавяне на %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне на AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Добавяне на ограничение" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Прехвърляна към копираната база от данни" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Колация" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -351,24 +354,24 @@ msgstr "" "Допълнителните възможности за работа със свързани (linked) таблици са " "деактивирани. За да разберете защо кликнете %sтук%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Релационна схема" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Таблица " #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -379,33 +382,33 @@ msgstr "Редове" msgid "Size" msgstr "Размер" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "Заето" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Дата на създаване" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Последно обновление" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -414,7 +417,7 @@ msgstr[0] "%s таблица(и)" msgstr[1] "%s таблица(и)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -444,7 +447,7 @@ msgid "Descending" msgstr "Низходящо" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Показване" @@ -465,8 +468,8 @@ msgid "Del" msgstr "Изтрий" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "или" @@ -539,17 +542,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s съвпадение(я) в таблица %s" msgstr[1] "%s съвпадение(я) в таблица %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Прелистване" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -594,156 +599,141 @@ msgstr "В таблиците:" msgid "Inside column:" msgstr "В таблиците:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Вмъкване" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Структура" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Унищожаване" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Изчистване" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Таблицата %s беше изчистена" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Изглед %s беше изтрит" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Таблицата %s беше изтрита" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Изглед" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Репликация" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Сума" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Когато има отметка:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Маркиране на всичко" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Размаркиране на всичко" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Експортиране" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Изчистване" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Унищожаване" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Проверка на таблицата" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Оптимизация на таблицата" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Поправяне на таблицата" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Анализиране на таблицата" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Речник на данните" @@ -751,13 +741,13 @@ msgstr "Речник на данните" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -784,8 +774,8 @@ msgstr "Състояние" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Действие" @@ -832,12 +822,12 @@ msgstr "Проверка на таблицата" msgid "Database Log" msgstr "БД" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -912,7 +902,7 @@ msgstr "Показалецът беше изтрит." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Показалец %s беше създаден успешно" @@ -935,7 +925,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Назад" @@ -1017,11 +1007,11 @@ msgstr "Името на хоста е празно!" msgid "The user name is empty!" msgstr "Потребителското име е празно!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Паролата е празна!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" @@ -1125,116 +1115,122 @@ msgid "Searching" msgstr "Търсене" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL заявка" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL заявка" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Хранилища" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Промените бяха съхранени" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Преглед на релациите" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Вътрешни релации" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Общи възможности на релациите" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Забранено" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Изберете Полета за показване" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генериране на парола" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генериране" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Смяна на паролата" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "пн" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Няма" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Предишен" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1242,96 +1238,96 @@ msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Общо" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Двоично " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "март" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "април" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "май" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "юни" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "юли" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "август" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "октомври" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "януари" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "февруари" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "април" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1339,176 +1335,176 @@ msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "август" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "септември" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "октомври" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "ноември" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "декември" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "нд" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "пн" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "вт" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "пт" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "Заето" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1584,9 +1580,9 @@ msgid "Comment" msgstr "Коментари" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Редактиране" @@ -1607,15 +1603,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Бази от данни" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Грешка" @@ -1859,6 +1855,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Вмъкване" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Структура" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1926,7 +1948,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Сървър" @@ -1982,7 +2004,7 @@ msgstr "MySQL отговори: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Explain SQL" @@ -1994,11 +2016,11 @@ msgstr "Пропусни Explain SQL" msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Създаване на PHP код" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Презареждане" @@ -2007,7 +2029,7 @@ msgstr "Презареждане" msgid "Skip Validate SQL" msgstr "Пропусни Validate SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Валидирай SQL-а" @@ -2107,7 +2129,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2131,14 +2153,14 @@ msgid "Select from the web server upload directory %s:" msgstr "директорията за upload на уеб сървъра" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Директорията която сте указали за upload не може да бъде достигната" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Структура" @@ -2269,7 +2291,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2279,15 +2301,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Записване" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Изчистване" @@ -2409,140 +2431,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Опции за експортиране на база от данни" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Преименуване на базата от данни на" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Показване на двоичните данни в шестнадесетичен вид" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Показване на двоичните данни в шестнадесетичен вид" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "редактиране на следващия ред" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Покажи възможностите" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Изпращане" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Набор от знаци на файла:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Компресия" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2552,71 +2570,71 @@ msgstr "Компресия" msgid "Put columns names in the first row" msgstr "Поставяне имената на полетата на първия ред" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Полетата са оградени с" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Представка на специалните знаци" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Заменяй NULL с" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Редовете завършват с" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Редовете завършват с" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Версия на Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Шаблон на файловото име" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Шаблон на файловото име" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Шаблон на файловото име" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2624,404 +2642,404 @@ msgstr "Шаблон на файловото име" msgid "Dump table" msgstr "%s таблица(и)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Включване на заглавие на таблицата" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Заглавие на таблицата" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Продължение на заглавието на таблицата" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Етикет на ключа" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-тип" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Релации" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тип на експортирането" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Препокриване на съществуващите файлове" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Шаблон на файловото име" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Използване на обратни кавички около имена на таблици и полета" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Режим на съвместимост на SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Създаване/Обновяване/Проверка на дати" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Използване на отложени вмъквания" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Забраняване на проверките за външен ключ" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Използване на шестнадесетична стойност за BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Използване на INSERT IGNORE" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Максимална дължина на създадената заявка" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Тип на експортирането" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Изолиране на експорта в транзакция" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Тип на експортирането" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Опции за експортиране на база от данни" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV данни" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Генериране" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Импортиране" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Импортиране на файлове" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Опции за експортиране на база от данни" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Сървъри" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Таблици" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Документация" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Номер на страницата:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Прозорец за заявки" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Документация" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Репликация" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Опции за експортиране на база от данни" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL заявка" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL заявка" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL заявка" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-хронология" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3029,284 +3047,284 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Състояние" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Таблица " -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Използвай текстовото поле" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Опции за експортиране на база от данни" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Игнориране на дублиращите се редове" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Заместване на данните от таблицата с данните от файла" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Формат на импортирания файл" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Използване на ключовата дума LOCAL " -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Поставяне имената на полетата на първия ред" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Брой записи(завки), които да бъдат пропуснати от началото" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "Брой на сортираните редове." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Показване на коментари към Колоните" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "Версия на клиента за MySQL" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3314,430 +3332,430 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Ресурсни ограничения" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Подреждане на таблицата по" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Прозорец за заявки" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Прозорец за заявки" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Прозорец за заявки" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Поправка на нишките" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Конекции" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Няма таблици" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Дефрагментиране на таблица" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Няма бази от данни" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "име на сървъра" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3746,302 +3764,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "име на базата от данни" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Избор на сървър" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Поправяне на таблицата" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Избор на сървър" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Показване на коментари към Колоните" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Заявление" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Режим на автоматично възстановяване" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Показване на отворените теблици" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Показване на пълните заявки" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Статистика за редовете" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4049,123 +4067,123 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Показване на отворените теблици" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Парола" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Име:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Добави/изтрий колона по критерий" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "По подразбиране" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4173,58 +4191,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4245,74 +4263,74 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV с LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Потребителски зададен цвят" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Опции за експортиране на база от данни" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Данни" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV за MS Excel данни" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4351,7 +4369,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4380,8 +4398,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Привилегии" @@ -4393,7 +4411,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4422,18 +4440,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Смяна на паролата" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Без парола" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Отново" @@ -4456,8 +4474,8 @@ msgstr "Създаване на нова БД" msgid "Create" msgstr "Създай" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Няма привилегии" @@ -4596,8 +4614,8 @@ msgid "Compression:" msgstr "Компресия" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Няма" @@ -4760,7 +4778,7 @@ msgstr "Сортиране по ключ" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4797,8 +4815,8 @@ msgstr "Показване на двоичните данни" msgid "Show BLOB contents" msgstr "Показване на BLOB-данните" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4816,49 +4834,49 @@ msgstr "Стартиране на запазена SQL-заявка" msgid "The row has been deleted" msgstr "Редът беше изтрит" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "СТОП" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "в запитването" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Показване на записи " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "Общо" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Променяне" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Операции с резулатата от заявката" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Преглед за печат (с пълните текстове)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Покажи PDF схема" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Връзките не са намерени" @@ -5283,12 +5301,12 @@ msgid "Data dump options" msgstr "Опции за експортиране на база от данни" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Дъмп (схема) на данните в таблицата" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Структура на таблица" @@ -5345,9 +5363,9 @@ msgstr "Достъпни MIME-типове" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -5493,41 +5511,41 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Процедури" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Функции" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Ограничения за таблица" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВЕ ЗА ТАБЛИЦА" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ ЗА ТАБЛИЦА" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Само структурата" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5562,43 +5580,43 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерирано от" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Няма бази от данни" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5649,7 +5667,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 #, fuzzy msgid "Table name" @@ -5731,7 +5749,7 @@ msgid "Charset" msgstr "Набор от знаци" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Двоично " @@ -6017,8 +6035,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Потребителско име" @@ -6037,7 +6055,7 @@ msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Стойност" @@ -6057,34 +6075,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Всеки потребител" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Използвай текстовото поле" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Всеки хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Този Хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Използвай таблица Host" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6341,11 +6359,11 @@ msgstr "Изпълнение на SQL заявка/заявки към база msgid "Columns" msgstr "Име на колона" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Запази тази SQL заявка" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Нека всеки потребител има достъп до този показалец" @@ -6377,7 +6395,7 @@ msgstr "Само показване" msgid "Location of the text file" msgstr "Местоположение на текстовия файл" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "директорията за upload на уеб сървъра" @@ -6547,22 +6565,22 @@ msgstr "" "Няма Описание за тази трансформация.
Моля обърнете се към автора " "относно това какво прави %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Хранилище на данни" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Добавяне на %s поле(та)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6793,8 +6811,8 @@ msgstr "Общи възможности на релациите" msgid "Protocol version" msgstr "Версия на протокола" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Потребител" @@ -6832,7 +6850,7 @@ msgstr "Официалната уеб страница на phpMyAdmin " msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6844,21 +6862,21 @@ msgstr "" "MySQL сървър е стартиран с това по подразбиране и може да бъде лесно хакнат. " "Трябва да оправите тази дупка в сигурността." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6866,18 +6884,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурационния файл има нужда от тайна парола (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6886,21 +6904,21 @@ msgstr "" "Допълнителните възможности за работа със свързани (linked) таблици са " "деактивирани. За да разберете защо кликнете %sтук%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7236,118 +7254,118 @@ msgstr "Хранилища на данни" msgid "View dump (schema) of databases" msgstr "Преглед на схемата на базата от данни" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Включва всички привилегии освен GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Позволява променяне на структурата на съществуващи таблици." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Позволяване на променяне и издриване на Съхранени Процедури." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Позволява създаване на нови бази от данни и таблици." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Позволяване на създаването на Съхранени Процедури." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Позволява създаване на нови таблици." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Позволява създаването на временни таблици." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Позволяване на създаването, изтриването и преименуването на потребителски " "акаунти." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Позволяване на създаването на нови Изгледи." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Позволява изтриване на данни." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Позволява изтриване на бази от данни и таблици." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Позволява изтриване на таблици." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Позволяване на стартирането на Съхранени Процедури." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Позволява импортиране на данни от и експортиране на данни във файлове." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Позволява добавяне на потребители и привилегии без презареждане на таблицата " "с привилегиите." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Позволява създаване и премахване на индекси." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Позволява вмъкване и заменяне на данни." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Позволява заключване на таблици за текущата нишка." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ограничава броя на новите конекции, които потребителя може да отвори на час." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ограничава броя на заявките, които потребителя може да изпрати към сървъра " "на час." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7355,62 +7373,62 @@ msgstr "" "Ограничава броя на командите, които променят някоя таблица или база от " "данни, които даден потребител може да стартира за час." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ограничава броя на новите конекции, които потребителя може да отвори на час." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Няма ефект в тази версия на MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Позволява презареждане на сървърните настройки и изчистване(flashing) на " "кеша на сървъра." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава правото на потребител да знае къде са slaves / masters." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Нужно за replication slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Позволява четене на данни." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Дава достъп до пълния списък на базите данни." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Позволяване на изпълнението на SHOW CREATE VIEW заявки." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Позволява спиране на сървъра." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7420,162 +7438,162 @@ msgstr "" "Изисква се за повечето административни операции, като установяване на " "глобални променливи или спиране на нишка на други потребители." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Позволява създаване и премахване на индекси." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Позволява промяна на данни." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Няма привилегии." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Няма" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Привилегии специфични за таблицата" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Забележка: Имената на привилегиите на MySQL са показани на английски. " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Глобални привилегии" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Привилегии специфични за базата от данни" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Администрация" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ресурсни ограничения" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Забележка: Установяването на тези опции с 0 (нула) премахва ограничението." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Информация за логване" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Да не се сменя паролата" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Няма потребител(и)." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Потребител %s вече съществува!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Вие добавихте нов потребител." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Вие променихте привилегиите за %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Вие отменихте привилегиите за %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Паролата на %s беше променена успешно." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Изтриване на %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Не за избрани потребители за изтриване!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Презареждане на привилегиите" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Избраните потребители бяха изтрити успешно." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Привилегиите бяха презаредени успешно." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Редактиране на привилегиите" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Отменяне" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "всеки" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Преглед на потребителите" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Дадени" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Добавяне на нов потребител." -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Отстраняване на избраните потребители" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Отмяна на всички активни привилегии от потребителите и след това изтриване." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" "Изтриване на базите от данни които имат имена като тези на потребителите." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7589,49 +7607,49 @@ msgstr "" "ръка. В този случай, трябва да %sпрезаредите привилегиите%s преди да " "продължите." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Избрания потребител не беше открит в таблицата с привилегиите." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Привилегии специфични за колоната" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Добавяне на привилегии към следната база от данни" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Добавяне на привилегии към следната таблица" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Промяна на логин информацията / Копиране на потребител" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Създаване нов потребител със същите привилегии и ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... запазване на стария." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... изтриване на стария от таблицата на потребителите." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... отменяне на всички активни привилегии от стария и след това изтриване." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7639,44 +7657,44 @@ msgstr "" " ... изтриване на стария от таблицата на потребителите и след това " "презареждане на привилегиите." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "База от данни за потребителя" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Няма" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Създаване на база от данни със същото име и даване на пълни привилегии" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Даване на пълни привилегии над база от данни "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Потребители които имат достъп до "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "глобален" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "специфични за базата от данни" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "знак за заместване" @@ -8582,7 +8600,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8992,12 +9010,12 @@ msgstr "" msgid "Validated SQL" msgstr "Валидирай SQL-а" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Етикет" @@ -9006,73 +9024,73 @@ msgstr "Етикет" msgid "Table %1$s has been altered successfully" msgstr "Избраните потребители бяха изтрити успешно." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Преглеждане на външните(foreign) стойности" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Функция" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Поради дължината си,
това поле може да не е редактируемо " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Двоично - не се редактира " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "и след това" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "връщане обратно" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "вмъкване на нов запис" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "връщане към тази страница" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "редактиране на следващия ред" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Използвайте клавиша TAB за да премествате крурсора от стойност на стойност " "или CTRL+стрелка за да премествате курсора в съответната посока" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9180,12 +9198,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Таблица %s вече съществува!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Таблицата %s беше изтрита" @@ -9684,11 +9702,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Описание" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "В момента не разполагате с достатъчно права за да се намирате тук!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Профила беше обновен." diff --git a/po/bn.po b/po/bn.po index 0879ea7b6b..9ec42ab2c0 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bangla \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Show all" @@ -37,17 +37,20 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "খুঁজুন" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "খুঁজুন" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -121,7 +124,7 @@ msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Table comments" @@ -132,7 +135,7 @@ msgstr "Table comments" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -147,8 +150,8 @@ msgstr "কলামের নাম" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -160,13 +163,13 @@ msgstr "Type" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "খালি" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -185,8 +188,8 @@ msgid "Links to" msgstr "Links to" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -202,10 +205,10 @@ msgstr "মন্তব্যসমূহ" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "না" @@ -221,10 +224,10 @@ msgstr "না" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -251,7 +254,7 @@ msgstr "সব সিলেক্ট করুন" msgid "Unselect All" msgstr "Unselect All" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "ডাটাবেজ এর নাম দেওয়া হয়নি" @@ -265,80 +268,80 @@ msgstr "Database %s has been renamed to %s" msgid "Database %s has been copied to %s" msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছে" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "নির্দেশ" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "কোন ডাটাবেজ নাই" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "ডাটাবেজ কপি করঃ" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "শুধু ডাটা" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -350,24 +353,24 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relational schema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "টেবিল" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -378,33 +381,33 @@ msgstr "Rows" msgid "Size" msgstr "আকার" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "in use" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Creation" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "সর্বশেষ আপডেট" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Last check" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -413,7 +416,7 @@ msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -443,7 +446,7 @@ msgid "Descending" msgstr "Descending" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "দেখান" @@ -464,8 +467,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "অথবা" @@ -538,17 +541,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "ব্রাউজ করুন" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -593,156 +598,141 @@ msgstr "Inside table(s):" msgid "Inside column:" msgstr "Inside table(s):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Insert" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Structure" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "মুছে ফেল" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "খালি" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "View" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replication" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "যোগফল" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "সব পরীক্ষা করুন" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Uncheck All" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Export" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Print view" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "খালি" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "মুছে ফেল" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "টেবিল পরীক্ষা কর" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "টেবিল অপটিমাইজ করুন" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "টেবিল রিপেয়ার করুন" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "টেবিল বিশ্লেষণ কর" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "ডাটা অভিধান" @@ -751,13 +741,13 @@ msgstr "ডাটা অভিধান" msgid "Tracked tables" msgstr "টেবিল পরীক্ষা কর" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -785,8 +775,8 @@ msgstr "অবস্থা" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Action" @@ -834,12 +824,12 @@ msgstr "টেবিল পরীক্ষা কর" msgid "Database Log" msgstr "ডাটাবেজ" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -916,7 +906,7 @@ msgstr "বুকমার্কটি মুছে ফেলা হয়েছে msgid "Showing bookmark" msgstr "বুকমার্ক দেখান" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" @@ -943,7 +933,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "পিছনে" @@ -1023,11 +1013,11 @@ msgstr "হোষ্ট নাম পূরন করা হয়নি" msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "পাসওয়ার্ড দেওয়া হয়নি" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" @@ -1131,115 +1121,121 @@ msgid "Searching" msgstr "খুঁজুন" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL query" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL query" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "ইঞ্জিনসমূহ" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Internal relations" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "বন্ধ করা হয়েছে" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "পাসওয়ার্ড তৈরী কর" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "তৈরী কর" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "পাসওয়ার্ড পরিবর্তন কর" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "সোমবার" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "ডাটা" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "পূর্ববর্তী" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1247,96 +1243,96 @@ msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "মোট" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "বাইনারী" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "মার্চ" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "এপ্রিল" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "মে" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "জুন" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "জুলাই" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "আগস্ট" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "অক্টোবর" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1344,176 +1340,176 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "ডিসেম্বর" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "সোমবার" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "শনিবার" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "রবিবার" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "সোমবার" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "মঙ্গলবার" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "বুধবার" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "বৃহস্পতিবার" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "শুক্রবার" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "শনিবার" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1589,9 +1585,9 @@ msgid "Comment" msgstr "মন্তব্যসমূহ" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "সম্পাদনা কর" @@ -1612,15 +1608,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "ডাটাবেজসমূহ Databases" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "ভূল" @@ -1867,6 +1863,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Insert" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Structure" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1935,7 +1957,7 @@ msgstr "Invalid server index: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "সার্ভার" @@ -1990,7 +2012,7 @@ msgstr "MySQL said: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL ব্যাখ্যা কর" @@ -2002,11 +2024,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "PHP কোড ছাড়া" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Refresh" @@ -2015,7 +2037,7 @@ msgstr "Refresh" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validate SQL" @@ -2115,7 +2137,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2139,14 +2161,14 @@ msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Structure" @@ -2276,7 +2298,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2286,15 +2308,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "সেভ করুন" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "রিসেট করুন" @@ -2416,140 +2438,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "পরবর্তী সাড়ি সম্পাদনা করুন" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "বৈশিষ্ট্যসমূহ প্রদর্শন কর" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "ফাইল হিসেবে সেভ করুন" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "ফাইল এর অক্ষরসমূহঃ" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "ফরমেট" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "সংকোচন" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2559,71 +2577,71 @@ msgstr "সংকোচন" msgid "Put columns names in the first row" msgstr "Put fields names in the first row" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Fields enclosed by" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Fields escaped by" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel edition" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2631,412 +2649,412 @@ msgstr "ফাইল নাম এর টেমপ্লেট" msgid "Dump table" msgstr "%s table(s)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Include table caption" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Table caption" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "মাইম এর ধরন" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Export type" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "তইরী/আপডেট/তারিখ পরীক্ষা কর" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Export type" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Export type" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "ফাইল ইম্পোর্ট কর" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "তৈরী কর" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "ইম্পোর্ট কর" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "ফাইল ইম্পোর্ট কর" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "সার্ভারসমূহ" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "টেবিলসমূহ" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 #, fuzzy msgid "Tables display options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "পাতার সংখ্যাঃ" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Query window" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "বর্ণনা" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Replication" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL query" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL query" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL query" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL history" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3044,72 +3062,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "অবস্থা" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "টেবিল" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Use text field" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3120,213 +3138,213 @@ msgstr "" "This might be good way to import large files, however it can break " "transactions." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "ডুপ্লিকেট সারি অবহেলা করুন" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "লোকাল কী-ওয়ার্ড ব্যাবহার করুন" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, 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:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "The number of sorted rows." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "MySQL client version" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3334,433 +3352,433 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "কোন ডাটাবেজ নাই" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Resource limits" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Query window" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Query window" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Query window" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "থ্রেড রিপেয়ার করুন" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Data home directory" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "সংযোগসমূহ" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "কোন টেবিল নাই" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "PHP Version" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "কোন ডাটাবেজ নাই" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "সার্ভার এর নাম" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3769,302 +3787,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ডাটাবেজ এর নাম" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "সার্ভারের আইডি" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "টেবিল রিপেয়ার করুন" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Server Choice" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Statements" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatic recovery mode" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Show open tables" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Show Full Queries" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Row Statistics" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4072,122 +4090,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Show open tables" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "পাসওয়ার্ড" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "ব্যাবহারকারী" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Add/Delete Field Columns" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4195,59 +4213,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "Data home directory" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4268,72 +4286,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "ডাটা" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV for MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4372,7 +4390,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 #, fuzzy msgid "Events" msgstr "Sent" @@ -4402,8 +4420,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privileges" @@ -4415,7 +4433,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4444,18 +4462,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "পাসওয়ার্ড পরিবর্তন কর" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "কোন পাসওয়ার্ড নাই" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-type" @@ -4478,8 +4496,8 @@ msgstr "নতুন ডাটাবেজ় তৈরী কর" msgid "Create" msgstr "তৈরী করুন" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "কোন সুবিধা নাই" @@ -4623,8 +4641,8 @@ msgid "Compression:" msgstr "সংকোচন" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "কোনটিই নয়" @@ -4796,7 +4814,7 @@ msgstr "Sort by key" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4833,8 +4851,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4852,49 +4870,49 @@ msgstr "Execute bookmarked query" msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "মোট" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Change" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Display PDF schema" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" @@ -5335,12 +5353,12 @@ msgid "Data dump options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Table structure for table" @@ -5397,9 +5415,9 @@ msgstr "Available MIME types" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "হোষ্ট" @@ -5545,41 +5563,41 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedures" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "ফাংশনসমূহ" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Structure only" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 #, fuzzy msgid "Stand-in structure for view" msgstr "Structure only" @@ -5616,44 +5634,44 @@ msgstr "SQL result" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "কোন ডাটাবেজ নাই" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "কোন ডাটাবেজ নাই" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5705,7 +5723,7 @@ msgstr "Invalid field count in CSV input on line %d." msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 #, fuzzy msgid "Table name" @@ -5785,7 +5803,7 @@ msgid "Charset" msgstr "Charset" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "বাইনারী" @@ -6070,8 +6088,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "ব্যাভারকারীর নাম" @@ -6092,7 +6110,7 @@ msgid "Variable" msgstr "চলক" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "মান" @@ -6111,34 +6129,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "যেকোন ব্যাবহারকারী" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "যেকোন হোষ্ট" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "লোকাল" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6395,11 +6413,11 @@ msgstr "Run SQL query/queries on database %s" msgid "Columns" msgstr "কলামের নাম" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" @@ -6431,7 +6449,7 @@ msgstr "শুধু দেখ" msgid "Location of the text file" msgstr "Location of the text file" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "web server upload directory" @@ -6598,22 +6616,22 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr " %s ক্ষেত্রসমূহ যোগ কর" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6863,8 +6881,8 @@ msgstr "General relation features" msgid "Protocol version" msgstr "Protocol version" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "User" @@ -6902,7 +6920,7 @@ msgstr "Official phpMyAdmin Homepage" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6914,7 +6932,7 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6924,7 +6942,7 @@ msgstr "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6934,7 +6952,7 @@ msgstr "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6942,19 +6960,19 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6963,21 +6981,21 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7315,112 +7333,112 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7428,58 +7446,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7489,161 +7507,161 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "No privileges." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "কোনটিই নয়" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" "নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege " "names are expressed in English " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Global privileges" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Login Information" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Do not change the password" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "No user(s) found." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "আপনি একটি নতুন ইউজার যোগ করেছেন" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "%s মুছে ফেলা হচ্ছে" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "মুছে ফেলার জন্য কোন ব্যাবহারকারী চিহ্নিত করা হয়নি" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "সুবিধাসমূহ সম্পাদনা কর" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "যেকোন" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "একটি নতুন ইউজার যোগ করুন" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7656,51 +7674,51 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should %" "sreload the privileges%s before you continue." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "কলাম নির্দিষ্ট সুবিধাসমূহ" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" "লগ ইন তথ্য পরিবর্তন কর অথবা ব্যাবহারকারী কপি করChange Login Information / Copy " "User" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... পুরাতনটা রেখে দাও" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7708,46 +7726,46 @@ msgstr "" " ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড " "কর" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "কোনটিই নয়" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" "একই নামে ডাটাবেজ তৈরী কর এবং সকল সুবিধাসমূহ মঞ্জুর করCreate database with same " "name and grant all privileges" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Check privileges for database "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "ডাটাবেজ-নির্দিষ্ট" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "wildcard" @@ -8750,7 +8768,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9163,12 +9181,12 @@ msgstr "Show Full Queries" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "লেবেল" @@ -9177,72 +9195,72 @@ msgstr "লেবেল" msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Browse foreign values" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "ফাংশন" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Because of its length,
this field might not be editable " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "বাইনারী -সম্পাদনা করবেন না" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Insert as new row" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "এবং তারপর" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "পূর্বের পাতায় ফিরে যাও" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "নতুন আরেকটি সাড়ি যোগ করুন" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "এই পাতায় ফিরে যাও" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "পরবর্তী সাড়ি সম্পাদনা করুন" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9350,12 +9368,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Table %s has been dropped" @@ -9852,11 +9870,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "বর্ণনা" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "You don't have sufficient privileges to be here right now!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "The profile has been updated." diff --git a/po/bs.po b/po/bs.po index 17d04d6e93..0979bf2701 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Prikaži sve" @@ -37,17 +37,20 @@ msgstr "" "zatvorili matični prozor, ili vaš preraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "Pretraživanje" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -121,7 +124,7 @@ msgid "Database comment: " msgstr "Komentar baze:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Komentari tabele" @@ -132,7 +135,7 @@ msgstr "Komentari tabele" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -147,8 +150,8 @@ msgstr "Imena kolona" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -160,13 +163,13 @@ msgstr "Tip" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -185,8 +188,8 @@ msgid "Links to" msgstr "Veze ka" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -202,10 +205,10 @@ msgstr "Komentari" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -221,10 +224,10 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -251,7 +254,7 @@ msgstr "Izaberi sve" msgid "Unselect All" msgstr "ništa" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 #, fuzzy msgid "The database name is empty!" msgstr "Ima tabele je prazno!" @@ -266,82 +269,82 @@ msgstr "Tabeli %s promjenjeno ime u %s" msgid "Database %s has been copied to %s" msgstr "Tabela %s je kopirana u %s." -#: db_operations.php:365 +#: db_operations.php:366 #, fuzzy msgid "Rename database to" msgstr "Promjeni ime tabele u " -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Naredba" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy msgid "Remove database" msgstr "Promjeni ime tabele u " -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Baza ne postoji" -#: db_operations.php:442 +#: db_operations.php:445 #, fuzzy msgid "Copy database to" msgstr "Baza ne postoji" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura i podatci" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:483 +#: db_operations.php:486 #, fuzzy msgid "Switch to copied database" msgstr "Pređi na kopiranu tabelu" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -353,24 +356,24 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relaciona shema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -381,33 +384,33 @@ msgstr "Redova" msgid "Size" msgstr "Veličina" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "se koristi" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Napravljeno" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Posljednja izmjena" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgstr[0] "%s tabela" msgstr[1] "%s tabela" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "Opadajući" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Prikaži" @@ -467,8 +470,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "ili" @@ -541,17 +544,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Pregled" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -596,157 +601,142 @@ msgstr "Unutar tabela:" msgid "Inside column:" msgstr "Unutar tabela:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Novi zapis" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Odbaci" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Isprazni" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Polje %s je obrisano" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 #, fuzzy msgid "Replication" msgstr "Relacije" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Ukupno" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "nijedno" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Izvoz" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Isprazni" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Odbaci" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Provjeri tabelu" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimiziraj tabelu" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Rečnik podataka" @@ -754,13 +744,13 @@ msgstr "Rečnik podataka" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -787,8 +777,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Akcija" @@ -835,12 +825,12 @@ msgstr "Provjeri tabelu" msgid "Database Log" msgstr "Baza podataka" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -911,7 +901,7 @@ msgstr "Obilježivač je upravo obrisan." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -934,7 +924,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Nazad" @@ -1013,11 +1003,11 @@ msgstr "Ime hosta je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" @@ -1117,115 +1107,121 @@ msgid "Searching" msgstr "Pretraživanje" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL upit" #: js/messages.php:85 +#, fuzzy +msgid "Show query box" +msgstr "SQL upit" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relacioni pogled" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Opšte osobine relacija" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Opšte osobine relacija" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Onemogućeno" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Generirao" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "nema" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1233,96 +1229,96 @@ msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "maj" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1330,176 +1326,176 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "dec" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1574,9 +1570,9 @@ msgid "Comment" msgstr "Komentari" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Promeni" @@ -1597,15 +1593,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Baze" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Greška" @@ -1846,6 +1842,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Novi zapis" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktura" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1911,7 +1933,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1967,7 +1989,7 @@ msgstr "MySQL kaže: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Objasni SQL" @@ -1979,11 +2001,11 @@ msgstr "Preskoči objašnjavanje SQL-a" msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1992,7 +2014,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Preskoči provjeru SQL-a" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Provjeri SQL" @@ -2090,7 +2112,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2114,14 +2136,14 @@ msgid "Select from the web server upload directory %s:" msgstr "direkcija za slanje web servera " #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Struktura" @@ -2252,7 +2274,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2262,15 +2284,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Sačuvaj" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Resetuj" @@ -2392,135 +2414,131 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Prikaži osobine" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Sačuvaj kao datoteku" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Karakter set datoteke:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2530,69 +2548,69 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Stavi imena polja u prvi red" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Polja ograničena sa" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Escape karakter      " -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Zamijeni NULL sa" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linije se završavaju sa" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Linije se završavaju sa" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2600,201 +2618,201 @@ msgstr "Šablon imena datoteke" msgid "Dump table" msgstr "%s tabela" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 #, fuzzy msgid "Table caption" msgstr "Opcije tabele" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 #, fuzzy msgid "Continued table caption" msgstr "Opcije tabele" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-tipovi" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "Izvoz" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće fajlove" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy msgid "Use delayed inserts" msgstr "Prošireni INSERT" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Prošireni INSERT" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Nema tabela" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV format" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "General" msgstr "Generirao" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2802,206 +2820,206 @@ msgstr "" msgid "Import" msgstr "Izvoz" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Uvoz fajlova" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabele" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Broj strane:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL upit" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL upit" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL upit" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL istorijat" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3009,280 +3027,280 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tabela" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Koristi tekst polje" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Prikazujem komentare kolone" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3290,427 +3308,427 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Ograničenja resursa" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Promijeni redoslijed u tabeli" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Konekcije" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Nema tabela" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Baza ne postoji" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3719,300 +3737,300 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Baza podataka" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Popravi tabelu" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazujem komentare kolone" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Ime" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "Verzija servera" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "Prikaži tabele" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži kompletne upite" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Statistike reda" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4020,122 +4038,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/obriši kolonu" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Podrazumjevano" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4143,58 +4161,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4215,72 +4233,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcije za izvoz baze" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Podaci" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4319,7 +4337,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4348,8 +4366,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegije" @@ -4361,7 +4379,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4390,18 +4408,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Promeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ponovite unos" @@ -4422,8 +4440,8 @@ msgstr "Napravi novu bazu podataka" msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Nema privilegija" @@ -4560,8 +4578,8 @@ msgid "Compression:" msgstr "Kompresija" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "nema" @@ -4719,7 +4737,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4756,8 +4774,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4775,49 +4793,49 @@ msgstr "Izvrši upamćen upit" msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Promijeni" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Veza nije pronađena" @@ -5239,12 +5257,12 @@ msgid "Data dump options" msgstr "Opcije za izvoz baze" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktura tabele" @@ -5296,9 +5314,9 @@ msgstr "Dostupni MIME-tipovi" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -5442,43 +5460,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "Procesi" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Funkcija" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Samo struktura" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5511,43 +5529,43 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generirao" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5598,7 +5616,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5675,7 +5693,7 @@ msgid "Charset" msgstr "Karakter set" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binarni" @@ -5964,8 +5982,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Ime korisnika" @@ -5984,7 +6002,7 @@ msgid "Variable" msgstr "Promjenljiva" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Vrijednost" @@ -6004,34 +6022,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Bilo koji host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Koristi tabelu hosta" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6288,11 +6306,11 @@ msgstr "Izvrši SQL upit(e) na bazi %s" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6324,7 +6342,7 @@ msgstr "Vidi samo" msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "direkcija za slanje web servera " @@ -6490,21 +6508,21 @@ msgid "" msgstr "" "Nema opisa za ovu transformaciju.
Molimo pitajte autora šta %s radi." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Dodaj novo polje" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6722,8 +6740,8 @@ msgstr "Opšte osobine relacija" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Korisnik" @@ -6761,7 +6779,7 @@ msgstr "phpMyAdmin veb sajt" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6773,21 +6791,21 @@ msgstr "" "ovim podešavanjima, otvoren je za hakovanje, i zaista treba da ispravite " "ovaj sigurnosni rizik." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6795,18 +6813,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguraciona datoteka zahtjeva tajnu lozinku (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6815,21 +6833,21 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7162,116 +7180,116 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmjenu struktura postojećih tabela." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamjenu podataka." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7279,60 +7297,60 @@ msgstr "" "Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " "izvrši na sat." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7342,158 +7360,158 @@ msgstr "" "Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " "promenljivih ili prekidanje procesa ostalih korisnika." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Nema privilegija." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "nema" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Podatci o prijavi" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nemoj da mijenjaš lozinku" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zabranili ste privilegije za %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspješno promjenjena." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Promijeni privilegije" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Zabrani" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7506,92 +7524,92 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na slijedećoj bazi" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... obriši stare iz tabela korisnika." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... obustavi sve privilegije starog korisnika i zatim ga obriši." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "nema" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globalno" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "Džoker" @@ -8487,7 +8505,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8897,12 +8915,12 @@ msgstr "" msgid "Validated SQL" msgstr "Provjeri SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Naziv" @@ -8911,72 +8929,72 @@ msgstr "Naziv" msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspješno obrisani." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binarni - ne mijenjaj" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: tbl_change.php:1052 +#: tbl_change.php:1054 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9080,12 +9098,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Korisnik %s već postoji!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s je odbačena" @@ -9579,11 +9597,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nije Vam dozvoljeno da budete ovdje!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil je promjenjen." diff --git a/po/ca.po b/po/ca.po index 40c2f26c9a..f3b7a9af36 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: catalan \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Mostra tot" @@ -37,17 +37,20 @@ msgstr "" "la finestra \"pare\" o bé el teu navegador bloqueja actualitzacions entre " "finestres per la teva configuració de seguretat" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "Cerca" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -123,7 +126,7 @@ msgid "Database comment: " msgstr "Comentaris de la Base de Dades: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Comentaris de la taula" @@ -134,7 +137,7 @@ msgstr "Comentaris de la taula" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -149,8 +152,8 @@ msgstr "Nom de les columnes" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -162,13 +165,13 @@ msgstr "Tipus" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nul" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -187,8 +190,8 @@ msgid "Links to" msgstr "Enllaços a" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -204,10 +207,10 @@ msgstr "Comentaris" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "No" @@ -223,10 +226,10 @@ msgstr "No" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -253,7 +256,7 @@ msgstr "Tria Tot" msgid "Unselect All" msgstr "Desmarca tot" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "El nom de la base de dades és buit!" @@ -267,81 +270,81 @@ msgstr "Base de dades %s reanomenada a %s" msgid "Database %s has been copied to %s" msgstr "La Base de dades %s s'ha copiat a %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Reanomena base de dades a" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Ordre" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Reanomena base de dades a" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "La Base de Dades %s s'ha eliminat." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Vés a la base de dades" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Còpia base de dades a" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Només l'estructura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estructura i dades" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Només dades" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Inclou CREATE DATABASE abans de copiar" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Afegeix %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Afegeix restriccions" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Canvia a la base de dades copiada" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Ordenació" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -353,24 +356,24 @@ msgstr "" "Les característiques addicionals per treballar amb taules enllaçades s'han " "desactivat. Per saber perquè prem a %saquí%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Esquema Relacional" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Taula" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -381,33 +384,33 @@ msgstr "Fila" msgid "Size" msgstr "Mida" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "en ús" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Creació" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Darrera actualització" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Darrera comprovació" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgstr[0] "%s taula(es)" msgstr[1] "%s taula(es)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "Descendent" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Mostra" @@ -467,8 +470,8 @@ msgid "Del" msgstr "Sup" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "O" @@ -541,17 +544,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultat(s) a la taula %s" msgstr[1] "%s resultat(s) a la taula %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Navega" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -596,69 +601,30 @@ msgstr "A la(les) taula(es):" msgid "Inside column:" msgstr "Camp interior:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Insereix" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Estructura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Elimina" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Buida" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "S'ha buidat la taula %s" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Vista %s esborrada" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "S'ha esborrat la taula %s" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "El seguiment està actiu." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "El seguiment no està actiu." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -666,87 +632,111 @@ msgid "" msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Vista" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replicació" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Suma" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Amb marca:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Marcar-ho tot" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Desmarcar tot" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exporta" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Buida" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Elimina" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Verifica la taula" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimitza la taula" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Repara la taula" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analitza la taula" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Diccionari de Dades" @@ -754,13 +744,13 @@ msgstr "Diccionari de Dades" msgid "Tracked tables" msgstr "Taules seguides" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -786,8 +776,8 @@ msgstr "Estat" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Acció" @@ -830,12 +820,12 @@ msgstr "Segueix taula" msgid "Database Log" msgstr "Registre de la base de dades" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -914,7 +904,7 @@ msgstr "S'ha esborrat la consulta desada." msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "%s creat com a consulta desada" @@ -942,7 +932,7 @@ msgstr "" "incrementeu els límits de temps de php." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Enrere" @@ -1025,11 +1015,11 @@ msgstr "El nom del servidor és buit!" msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" @@ -1136,114 +1126,122 @@ msgid "Searching" msgstr "Cerca" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Caixa de consultes SQL" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Caixa de consultes SQL" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Motors" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relació esborrada" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Afegida relació de FOREIGN KEY" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Afegida relació interna" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Error: La relació no s'ha afegit." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Error: La relació ja existeix." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Error desant coordenades per al Dissenyador." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Característiques generals de relacions" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Desactivat" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Tria la clau principal o una clau única" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Tria el camp a mostrar" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Genera una Contrasenya" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genera" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Canvi de contrasenya" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dll" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Donacions" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1251,96 +1249,96 @@ msgid "Next" msgstr "Següent" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binari " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Oct" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1348,178 +1346,178 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dec" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Diu" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dll" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Dma" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Div" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Diu" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dll" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Dma" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Dcr" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Dij" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Div" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Dis" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "en ús" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1596,9 +1594,9 @@ msgid "Comment" msgstr "Comentari" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Edita" @@ -1621,15 +1619,15 @@ msgstr "" "Els indexs %1$s i %2$s semblen iguals i un d'ells possiblement es podria " "esborrar." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Bases de dades" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -1881,6 +1879,32 @@ msgstr "Descarrega arxiu" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Insereix" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Estructura" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1951,7 +1975,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Servidor" @@ -2009,7 +2033,7 @@ msgstr "MySQL diu: " msgid "Failed to connect to SQL validator!" msgstr "No es pot connectar al servidor MySQL" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Explica SQL" @@ -2021,11 +2045,11 @@ msgstr "Salta l'explicació de l'SQL" msgid "Without PHP Code" msgstr "Sense codi PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Crea codi PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Refresca" @@ -2034,7 +2058,7 @@ msgstr "Refresca" msgid "Skip Validate SQL" msgstr "Salta la Validació de l'SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Valida l'SQL" @@ -2134,7 +2158,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2158,14 +2182,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Directori de pujada d'arxius del servidor web" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "estructura" @@ -2296,7 +2320,7 @@ msgid "Set value: %s" msgstr "Estableix valor: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Restaura el valor per defecte" @@ -2306,15 +2330,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Desa" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Reinicia" @@ -2456,112 +2480,108 @@ msgid "Confirm DROP queries" msgstr "Confirma les consultes de DROP" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Opcions de visualització de les bases de dades" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Pestanya que es mostra al entrar a una base de dades" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Pestanya de base de dades predeterminada" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Pestanya que es mostra al entrar a un servidor" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Pestanya de servidor predeterminada" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Pestanya que es mostra al entrar a una taula" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Pestanya de taula predeterminada" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Mostra el contingut binari com HEX" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Mostra el contingut binari com HEX" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Mostra les bases de dades com a llista en lloc de llista desplegable" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Mostra bases de dades com a llista" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Mostra servidors com a llista" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Edita el següent registre" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Mostra les característiques" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Ignora errors" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Ignora errors" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2569,32 +2589,32 @@ 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:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Màxim temps d'execució" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Desa com a arxiu" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Joc de caràcters de l'arxiu" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compresió" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2604,70 +2624,70 @@ msgstr "Compresió" msgid "Put columns names in the first row" msgstr "Posa els noms de camp a la primera fila" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Camps englobats per" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Camps amb marca d'escapada" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Canvía NULL per" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Treu caràcters CRLF de dins dels camps" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Línies acabades amb" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Línies acabades amb" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edició per Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Plantilla de nom de base de dades" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Plantilla de nom de servidor" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Plantilla de nom de taula" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2675,118 +2695,118 @@ msgstr "Plantilla de nom de taula" msgid "Dump table" msgstr "%s taula(es)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Inclusió del titol de taula" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Titol de Taula" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Continuació del Titol de taula" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Etiqueta de clau" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Tipus MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relacions" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Tipus d' Exportació" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Desa al servidor" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Sobreescriu arxiu(s) existent(s)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Recorda la plantilla del nom d'arxiu" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Usa "backquotes" amb taules i noms de camps" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Modus de compatibilitat SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Dates de Creació/Modificació/Comprovació" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Usa insercions diferides" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Desactiva les comprovacions de claus externes" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Usa hexadecimal per a BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Utilitza \"ignore inserts\"" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Tamany màxim de la consulta creada" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Exporta taules" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Incloure exportació en la transacció" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy #| msgid "Export contents" msgid "Export time in UTC" msgstr "Exporta contingut" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Força la connexió segura al usar phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Força la connexió SSL" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2795,193 +2815,193 @@ msgstr "" "[kbd]content[/kbd] és la dada referenciada, [kbd]id[/kbd] és el valor de la " "clau" -#: libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Ordre de claus externes a la llista desplegable" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "Ús de llista desplegable si hi son menys ítems presents" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Límit de claus externes" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Mode de navegació" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Configura el mode de navegació" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Configura les opcions predeterminades d'exportació" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "dades CSV " -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Mode d'edició" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Configura el mode d'edició" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Predeterminats d'exportació" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Configura les opcions predeterminades d'exportació" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Propietats" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Genera" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importa" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Predeterminats d'importació" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Configura les opcions predeterminades d'importació" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Importar / exportar" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 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:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Opcions de visualització de les bases de dades" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Marc de navegació" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Configura l'aspecte del marc de navegació" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servidors" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Opcions de visualització dels servidors" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Taules" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Opcions de visualització de les taules" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Marc principal" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Text format Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Altres paràmetres principals" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Paràmetres que no encaixaven en cap altre lloc" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Número de pàgina:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Finestra de consultes" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Configura les opcions de la finestra de consultes" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Securetat" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2989,27 +3009,27 @@ msgstr "" "Tingues en compte que phpMyAdmin només és una interficie d'usuari i les " "seves caracteristiques no limiten a MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Paràmetres bàsics" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Tipus d'autenticació" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Tipus d'autenticació" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Configuració del servidor" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3017,17 +3037,17 @@ msgstr "" "Configuració avançada del servidor, no canviis aquestes opcions si no saps " "el que estàs fent" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Entra els paràmetres de connexió al servidor" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Arxiu de configuració" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3042,56 +3062,56 @@ msgstr "" "adiccionals, consulta [a@../Documentation.html#linked-tables]infraestructura " "de taules enllaçades[/a] a la documentació" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Configurar valors d'expotació predeterminats" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Configurar valors d'importació predeterminats" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Configurar marc de navegació" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Configurar marc principal" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Consultes SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "Caixa de consultes SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 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:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "Consultes SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Historial SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3099,49 +3119,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Inici" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Configura la pàgina d'inici" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Pestanyes" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Tria cóm vols que treballin les pestanyes" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Usa camp de text" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Configurar valors d'expotació predeterminats" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Text Texy!" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Atenció" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3149,15 +3169,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:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Paràmetres adiccionals per iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3165,11 +3185,11 @@ msgstr "" "Si està activat, phpMyAdmin continúa processant consultes de múltiples " "instruccions encara que una d'elles falli" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignora errors d'instruccions multiples" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3179,21 +3199,21 @@ msgstr "" "límit de temps. Pot ser una opció per importar grans arxius, tanmateix pot " "trencar transaccions." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Importació pacial: permet interrompre" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignora les files duplicades" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Canviar les dades de la taula per l'arxiu " -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3201,98 +3221,98 @@ msgstr "" "Format predeterminat; sigues 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Format de l'arxiu importat" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Usa clau LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Noms de columnes a la primera fila" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "No importis files buides" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Importar monedes ($5.00 a 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" 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:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Nombre de registres(consultes) a saltar des de l'inici" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Importació parcial: saltar consultes" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No feu servir AUTO_INCREMENT per a valors zero" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Quàntes files es poden inserir a la vegada" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Nombre de files a inserir" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Destí per a la icona d'accés ràpid" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Mostra el logo al marc esquerre" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Mostra el logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Mostra el servidor triat a dalt del marc esquerre" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Mostra la tría de servidors" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Mostra les bases de dades en arbre" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 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:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Separador per l'arbre de bases de dades" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3300,39 +3320,39 @@ msgstr "" "Només versió lleugera; mostrar bases de dades en arbre (determinat pel " "separador definit tot seguit)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Mostra les bases de dades en arbre" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Desactiva aixó si vols veure totes les bases de dades de cop" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Usar versió lleugera" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Màxima profunditat de l'arbre de taules" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Text que separa taules en diferents nivells d'arbre" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Separador d'arbre de taules" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Enllaç d'URL al logo" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3340,38 +3360,38 @@ 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Destí d\\enllaç al logo" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Resalta el servidor sota el cursor del ratolí" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Activa resaltat" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Ús de pestanyes amb menys contingut gràfic" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Pestanyes lleugeres" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, 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 "Màxim nombre de caràcters usats quan es mostra una consulta SQL" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3382,11 +3402,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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Esborra totres les galetes al desconnectar" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3394,11 +3414,11 @@ msgstr "" "Defineix si l'anterior autenticació s'ha de recuperar o no al mode " "d'autenticació per galetes" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Nom d'usuari de recuperació" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3410,55 +3430,55 @@ 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:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Enmagatzema les galetes de connexió" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" "Defineix durant quant de temps (en segons) es vàlida una galeta " "d'autenticació" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Validesa de l'autenticació per galetes" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Tamany màxim de SQL mostrat" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Màxim nombre de bases de dades mostrades al marc esquerre i a la llista" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Màxim de bases de dades" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3468,29 +3488,29 @@ msgstr "" "conté més files, es mostraràn els enllaços "Anterior" i "" "Següent"." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Màxim nombre de files a mostrar" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Màxim nombre de taules mostrades a la llista" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Màxim de taules" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3498,49 +3518,49 @@ 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Límit de memoria" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Menú esquerre Mostra/Amaga" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Altera la taula i ordena per" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 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:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Barra de navegació amb icones" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 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:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "Memòria cau de sortida per GZip" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3552,46 +3572,46 @@ msgstr "" "[kbd]SMART[/kbd] - i.e. ordre descendent per camps de tipus TIME, DATE, " "DATETIME i TIMESTAMP, ordre descendent ascendent a la resta" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Ordre de clasificació predeterminat" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Utilitza connexions persistents a bases de dades MySQL" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Connexions persistents" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Icones d'operacions de taula" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Desactiva l'edició en camps tipus BLOB i BINARY" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Protegeix els camps binaris" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3605,120 +3625,120 @@ msgstr "" "pmadb). Si es desactiva, es fan servir rutines JS per mostrar l'historial de " "consultes (es perd al tancar la finestra)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Historial permanent de consultes" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Quàntes consultes s'han de desar a l'historial" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Tamany de l'historial de consultes" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Pestanya que es mostra al entrar a una nova finestra de consultes" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Pestanya de finestra de consultes predeterminada" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Finestra de consultes" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Finestra de consultes" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Finestra de consultes" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 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:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Motor d'enregistrament" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Repara fils" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Directori del servidor ón pots desar les exportacions" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Directori de Desades" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Deixa en blanc si no l'utilitzes" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Ordre d'autenticació del servidor" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Deixa en blanc per als predeterminats" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Regles d'autenticació del servidor" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Permetre connexions sense contrasenya" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Permetre la connexió de root" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3728,19 +3748,19 @@ msgstr "" "maquinari SweKey[/a] (no trobat al teu arrel de documents; es recomana a: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "Arxiu de configuració SweKey" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Mètode d'autenticació a usar" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Tipus d'autenticació" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3748,11 +3768,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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Taula de consultes desades" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3760,31 +3780,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:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Taula d'informació de columna" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Connexió comprimida al servidor MySQL" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Connexió comprimida" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Cóm connectar al servidor, deixa tcp si no estàs segur" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Tipus de connexió" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Contrasenya de l'usuari de control" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3792,19 +3812,19 @@ 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Usuari de control" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Comptar les taules al mostrar la llista de bases de dades" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Comptar les taules" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3812,11 +3832,11 @@ msgstr "" "Deixa en blanc per desactivar el suport del Dissenyador, suggerit: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Taula del Dissenyador" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3824,29 +3844,29 @@ msgstr "" "Més informació a [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] i [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desactiva l'ús d'INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "La extensió de PHP utilitzada; hauries de fer servir mysqli si ho tens " "suportat" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Extensió PHP a usar" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Amagar les bases de dades que compleixin una expresió regular (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Amagar bases de dades" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3854,31 +3874,31 @@ msgstr "" "Deixa en blanc per desactivar el suport d'historial de consultes SQL, " "suggerit: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "Taula d'historial de consultes SQL" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Nom del servidor ón MySQL és en marxa" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Nom del servidor" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "URL de desconnexió" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Intentar connectar sense contrasenya" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Connexió sense contrasenya" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3893,30 +3913,30 @@ msgstr "" "Pots usar els caràcters comodins de MySQL (% and _), escapal's si vols fer-" "los servir als teus texts, ex.: usa 'my\\_db' i no 'my_db'" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Mostra només les bases de dades de la llista" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Deixa en blanc si no utilitzes l'autenticació config" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Contrasenya autenticació config" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 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:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "Esquema PDF: taula de pàgines" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3927,22 +3947,22 @@ msgstr "" "tenir informació més completa. Deixa en blanc per no utilitzar. Suggerit: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nom de base de dades" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Port del servidor" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3950,19 +3970,19 @@ 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Taula de relacions" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "Ordre SQL per obtenir les bases de dades disponibles" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "Ordre SHOW DATABASES" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3970,44 +3990,44 @@ msgstr "" "Consulta [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipus " "d'autenticació[/a] per veure exemples" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Nom de sessió signon" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "URL signon" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Sócol del servidor" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Activa SSL per la connexió amb el servidor MySQL" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Usa SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "Esquema PDF: taula de coordinades" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4019,53 +4039,53 @@ msgstr "" "Taula per descriure els camps a mostrar, deixa en blanc per desactivar; " "suggerit: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Taula de descripció de camps" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Sentències" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4077,25 +4097,25 @@ msgstr "" "Deixa en blanc per desactivar el suport d'historial de consultes SQL, " "suggerit: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "Taula d'historial de consultes SQL" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Modus de recuperació automàtic" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4107,15 +4127,15 @@ msgstr "" "Deixa en blanc per desactivar el suport d'historial de consultes SQL, " "suggerit: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Usuari per autenticació config" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4124,11 +4144,11 @@ msgstr "" "darrera versió. Aixó evita problemes de comprobacions de compatibilitat i " "així aumenta el rendiment" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Comprobació explicativa" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4136,11 +4156,11 @@ 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:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Nom explicatiu d'aquest servidor" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4149,11 +4169,11 @@ msgstr "" "Si a un usuari se l'hauria de mostrar el botó "mostrar tots (els " "registres)"" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Permet mostrar totes les files" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4163,35 +4183,35 @@ 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Mostra el formulari de canvi de contrasenya" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Mostra el formulari de creació de base de dades" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Mostra taules obertes" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Mostra els camps de funcio en modes edició/inserció" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Mostra els camps de funció" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4199,32 +4219,32 @@ msgstr "" "Mostra l'enllaç a la sortida de [a@http://php.net/manual/function.phpinfo." "php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Mostra l'enllaç a phpinfo()" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Mostra informació detallada del servidor MySQL" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Mostra consultes SQL" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Mostra estadístiques" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4232,11 +4252,11 @@ msgstr "" "Si les ajudes estàn activades i s'ha establert un comentari per a la base de " "dades, alternarà el comentari i el nom real" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Mostra comentari de la base de dades en lloc del seu nom" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4248,61 +4268,61 @@ msgstr "" "['LeftFrameTableSeparator'], així només la carpeta s'anomena com l'àlies, el " "nom de la taula romàn intacte" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Mostra comentari de taula en lloc del seu nom" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Mostra comentaris de taula en ajudes" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 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:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Salta taules bloquejades" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Contrasenya" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Nom d'usuari" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4310,65 +4330,65 @@ msgstr "" "Proposa un nom de base de dades al formulari "Crear Base de Dades" " "(si es posible) o bé deixa buit el camp de text" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Proposa un nou nom de base de dades" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "Columnes per àrea de text CHAR" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "Files per àrea de text CHAR" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Pestanya de taula predeterminada" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4380,37 +4400,37 @@ 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:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "Llista de proxies confiables per autoritzar/prohibir IP" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Directori de pujades" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Permet cercar dins de tota la base de dades" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Usa cerca de base de dades" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4420,15 +4440,15 @@ msgstr "" "multiples. Consulta libraries/import.lib.php per valors predeterminats en " "quantes consultes pot contenir una instrucció." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Mostra les instruccions multiples" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Comprova la darrera versió" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4436,7 +4456,7 @@ 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4465,74 +4485,74 @@ msgid "Signon authentication" msgstr "Ordre d'autenticació del servidor" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV usant LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Llibre d'Excel 97-2003 XLS" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Llibre d'Excel 2007 XLSX" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Full de càlcul Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Color triat" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcions d'exportació de Bases de Dades" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Dades" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV per dades de MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Text format Open Document" @@ -4571,7 +4591,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Esdeveniments" @@ -4600,8 +4620,8 @@ msgid "Designer" msgstr "Dissenyador" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Permisos" @@ -4613,7 +4633,7 @@ msgstr "Rutines" msgid "Return type" msgstr "Tipus de retorn" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4644,18 +4664,18 @@ msgid "Details..." msgstr "Detalls..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Canvi de contrasenya" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Sense contrasenya" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Reescriu" @@ -4678,8 +4698,8 @@ msgstr "Crea una nova base de dades" msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Sense permisos" @@ -4826,8 +4846,8 @@ msgid "Compression:" msgstr "Compresió" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Res" @@ -5008,7 +5028,7 @@ msgstr "Classifica per la clau" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5043,8 +5063,8 @@ msgstr "Mostra continguts binaris" msgid "Show BLOB contents" msgstr "Mostra contingut BLOB" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Amaga" @@ -5062,49 +5082,49 @@ msgstr "Executa una consulta desada" msgid "The row has been deleted" msgstr "S'ha esborrat la fila" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Finalitzar" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "en consulta" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Mostrant registres: " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Canvi" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Vista d'impresió (amb texts sencers)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostra l'esquema PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "No s'ha trobat l'enllaç " @@ -5586,12 +5606,12 @@ msgid "Data dump options" msgstr "Opcions de visualització de les bases de dades" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Bolcant dades de la taula" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Estructura de la taula" @@ -5648,9 +5668,9 @@ msgstr "Tipus MIME disponibles" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Servidor" @@ -5796,40 +5816,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procediments" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funcions" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Restriccions per taules bolcades" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Restriccions per la taula" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "TIPUS MIME PER LA TAULA" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELACIONS DE LA TAULA" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Disparadors" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Estructura per a vista" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Estructura de suport per a vistes" @@ -5864,44 +5884,44 @@ msgstr "Resultat SQL" msgid "Generated by" msgstr "Generat per" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Veure el contingut d'una estructura fent clic sobre el seu nom" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç " "\"Opcions\"" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\"" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Vés a la base de dades" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "configuració" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Vés a la taula" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Vés a la vista" @@ -5953,7 +5973,7 @@ msgstr "Comptador de camps incorrecte en l'entrada CSV a la línia %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nom de taula" @@ -6040,7 +6060,7 @@ msgid "Charset" msgstr "Joc de Caràcters" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Binari " @@ -6328,8 +6348,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Nom d'usuari" @@ -6348,7 +6368,7 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Valor" @@ -6369,34 +6389,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Afegeix l'usuari esclau de replicació" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Qualsevol usuari" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Usa camp de text" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Qualsevol servidor" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Aquest Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Utilitza la Taula de Hosts" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6652,11 +6672,11 @@ msgstr "Executa consulta/s SQL a la Base de Dades %s" msgid "Columns" msgstr "Nom de les columnes" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" @@ -6688,7 +6708,7 @@ msgstr "Només mirar" msgid "Location of the text file" msgstr "Ubicació de l'arxiu de text" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Directori de pujada d'arxius del servidor web" @@ -6857,22 +6877,22 @@ msgstr "" "No hi ha cap descripció disponible per a aquesta transformació.
Demana " "a l'autor qué fa %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Motor d'emmagatzematge" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Definicio de PARTICIÓ" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Afegeix columna(es)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7124,8 +7144,8 @@ msgstr "configuració" msgid "Protocol version" msgstr "Versió del protocol" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Usuari" @@ -7162,7 +7182,7 @@ msgstr "Pàgina oficial del phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7175,7 +7195,7 @@ msgstr "" "i s'exposa a intrusions, pel que recomanem la reparació urgent d'aquest " "forat de seguretat." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7185,7 +7205,7 @@ msgstr "" "PHP. Aquesta opció és incompatible amb phpMyAdmin i pot provocar la perdua " "de dades!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7195,7 +7215,7 @@ msgstr "" "de caràcters multibyte. Sense l'extensió -mbstring-, phpMyAdmin és incapaç " "de dividir cadenes de text correctament i pot generar resultats inesperats." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7207,13 +7227,13 @@ msgstr "" "caducitat de galetes (cookies) configurat a phpMyAdmin, degut a aixó, la " "vostra conenexió caducarà abans del establert a phpMyAdmin." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "L'arxiu de configuració necessita ara una frase de pas secreta " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7223,7 +7243,7 @@ msgstr "" "encara existeix dins del vostre directori de phpMyAdmin. Heu d'esborrar-ho " "un cop heu acabat de configurar phpMyAdmin." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7232,14 +7252,14 @@ msgstr "" "Les característiques addicionals per treballar amb taules enllaçades s'han " "desactivat. Per saber perquè prem a %saquí%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7248,7 +7268,7 @@ msgstr "" "La teva llibreria MySQL de PHP MySQL versió %s és diferent del teu servidor " "MySQL versió %s. Aixó pot provocar comportaments inesperats." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7600,114 +7620,114 @@ msgstr "Motors d'emmagatzematge" msgid "View dump (schema) of databases" msgstr "Veure volcat (esquema) de les bases de dades" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Inclou tots els permisos excepte GRANT (atorgar)." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permet alterar l'estructura de taules existents." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permet alterar i esborrar rutines enmagatzemades." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permet crear noves bases de dades i taules." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permet crear rutines enmgatzemades." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permet crear noves taules." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permet crear taules temporals." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permet crear, esborrar i reanomenar comptes d'usuari." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permet crear noves vistes." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permet esborrar dades." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permet eliminar bases de dades i taules." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permet eliminar taules." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permet establir events per al planificador d'events" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permet executar rutines enmagatzemades." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permet importar i exportar dades amb arxius externs." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permet afegir usuaris i permisos sense tenir que recarregar les taules de " "permisos." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permet crear i eliminar indexs." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permet inserir i modificar dades." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permet bloquejar taules per l'actual fil d'execució." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita el numero de noves connexions que pot obrir l'usuari per hora." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el numero de consultes que pot enviar l'usuari al servidor per hora." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7715,61 +7735,61 @@ msgstr "" "Limita el numero d'ordres que pot executar l'usuari canviant qualsevol taula " "o base de dades per hora." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permet veure processos de tots els usuaris" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "No té efecte en aquesta versió de MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permet recarregar les configuracions del servidor i buidar les seves " "memòries cau." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dona el dret a l'usuari de preguntar quins servidors mestres / esclaus hi ha." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Es necessari per a la replicació en servidors esclaus." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permet llegir dades." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Dona accés a la llista completa de bases de dades." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permet fer consultes de tipus SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permet parar el servidor." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7779,158 +7799,158 @@ msgstr "" "permés; Es necessari per moltes operacions d'administració com ara establir " "variables globals o bé cancel.lar fils d'execució d'altres usuaris." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permet crear i eliminar disparadors (triggers)" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permet canviar dades." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Sense permisos." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Res" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: Els noms dels privilegis del MySQL són en idioma anglès " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Permisos generals" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Permisos especifics de Base de dades" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administració" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limit de recursos" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero)." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informació d'Identificació" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "No canviïs la contrasenya" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "No s'han trobat usuaris." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "L'usuari %s ja existeix!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Has afegit un usuari nou." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Heu actualitzat els permisos de %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Has tret els permisos per %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "La contrasenya per %s s'ha canviat correctament." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Esborrant %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "No s\\han triat usuaris per esborrar!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Recarregant permisos" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "S'han esborrat correctament els usuaris triats." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Edita permisos" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Treu" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Qualsevol" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Informació general de l'usuari" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Atorga" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Afegeix un usuari nou" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Treu els usuaris triats" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Treu tots els permisos actius dels usuaris i els esborra després." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" "Esborra les bases de dades que tenen els mateixos noms que els usuaris." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7943,49 +7963,49 @@ msgstr "" "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Permisos específics de columna" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Afegeix permisos a la següent base de dades" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Els comodins _ i % han de marcar-se amb una \\ per usar-los literalment" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Afegeix permisos a la següent taula" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Canvi d'Informació de Connexió / Copia d'Usuari" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nou usuari amb els mateixos permisos i ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... respecta l'antic." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... esborra l'antic de les taules d'usuaris." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... treu tots els permisos actius de l'antic i esborra'l després." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7993,44 +8013,44 @@ msgstr "" " ... esborra l'antic de les taules d'usuaris i recarrega els permisos " "després." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Base de dades per usuari" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Res" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Atorga tots els permisos en un nom comodí (nomusuari_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Atorga tots els permisos a la base de dades "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Usuaris amb accés a "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "específic de la base de dades" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "comodins" @@ -9077,7 +9097,7 @@ msgstr "No s'ha pogut connectar a l'origen" msgid "Could not connect to the target" msgstr "No s'ha pogut connectar a la destinació" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9600,12 +9620,12 @@ msgstr "Mostrant consulta SQL" msgid "Validated SQL" msgstr "Valida l'SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etiqueta" @@ -9614,74 +9634,74 @@ msgstr "Etiqueta" msgid "Table %1$s has been altered successfully" msgstr "S'ha modificat la taula %1$s correctament" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Navega valors externs" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funció" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " A causa de la seva longitud,
aquest camp pot no ser editable " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Treure Referència a Repositori BLOB" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Binari - no editeu " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Puja al repositori BLOB" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Mostrant consulta SQL" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "i llavors" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Torna" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Edita el següent registre" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't " "on vulguis" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9792,12 +9812,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "La taula %s ja existeix!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "S'ha creat la taula %1$s." @@ -10296,11 +10316,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Descripció" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "No tens prou permisos per visualitzar aquesta informació!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "S'ha actualitzat el perfil." diff --git a/po/cs.po b/po/cs.po index 2c2ad03f82..b6cccbe8a1 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-09-21 14:47+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" @@ -18,7 +18,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Zobrazit vše" @@ -41,17 +41,20 @@ msgstr "" "rodičovské okno, nebo prohlížeč blokuje operace mezi okny z důvodu " "bezpečnostních nastavení." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Vyhledávání" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -66,14 +69,14 @@ msgstr "Vyhledávání" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -125,7 +128,7 @@ msgid "Database comment: " msgstr "Komentář k databázi: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Komentář k tabulce" @@ -136,7 +139,7 @@ msgstr "Komentář k tabulce" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -149,8 +152,8 @@ msgstr "Pole" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -162,13 +165,13 @@ msgstr "Typ" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nulový" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -187,8 +190,8 @@ msgid "Links to" msgstr "Odkazuje na" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -204,10 +207,10 @@ msgstr "Komentáře" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -223,10 +226,10 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -253,7 +256,7 @@ msgstr "Vybrat vše" msgid "Unselect All" msgstr "Odznačit vše" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Jméno databáze je prázdné!" @@ -267,77 +270,77 @@ msgstr "Databáze %s byla přejmenována na %s" msgid "Database %s has been copied to %s" msgstr "Databáze %s byla zkopírována na %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Přejmenovat databázi na" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Příkaz" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Odstranit databázi" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Databáze %s byla zrušena." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Odstranit databázi (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Zkopírovat databázi na" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Pouze strukturu" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strukturu a data" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Jen data" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Přidat %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Přidat integritní omezení" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Přepnout na zkopírovanou databázi" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Porovnávání" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -346,22 +349,22 @@ msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " "proč." -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "Upravit nebo exportovat relační schéma" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabulka" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -372,33 +375,33 @@ msgstr "Řádků" msgid "Size" msgstr "Velikost" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "právě se používá" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Vytvoření" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Poslední změna" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Poslední kontrola" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -407,7 +410,7 @@ msgstr[1] "%s tabulky" msgstr[2] "%s tabulek" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -437,7 +440,7 @@ msgid "Descending" msgstr "Sestupně" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Zobrazit" @@ -458,8 +461,8 @@ msgid "Del" msgstr "smazat" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "nebo" @@ -528,17 +531,19 @@ msgstr[0] "%s odpovídající záznam v tabulce %s" msgstr[1] "%s odpovídající záznamy v tabulce %s" msgstr[2] "%s odpovídajících záznamů v tabulce %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Projít" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -581,157 +586,142 @@ msgstr "V tabulkách:" msgid "Inside column:" msgstr "Uvnitř pole:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Vložit" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Odstranit" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Vyprázdnit" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabulka %s byla vyprázdněna" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Pohled %s byl odstraněn" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabulka %s byla odstraněna" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Sledování je zapnuté." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Sledování není zapnuté." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, 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." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Pohled" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikace" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Celkem" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je výchozí úložiště na tomto MySQL serveru." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Zaškrtnuté:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Zaškrtnout vše" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Odškrtnout vše" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Export" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Vyprázdnit" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Odstranit" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Zkontrolovat tabulku" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimalizovat tabulku" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Opravit tabulku" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyzovat tabulku" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Datový slovník" @@ -739,13 +729,13 @@ msgstr "Datový slovník" msgid "Tracked tables" msgstr "Sledované tabulky" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -771,8 +761,8 @@ msgstr "Stav" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Akce" @@ -815,12 +805,12 @@ msgstr "Sledovat tabulku" msgid "Database Log" msgstr "Historie databáze" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "Hodnoty pro pole \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "Zadejte každou hodnotu do samostatného políčka." @@ -854,8 +844,8 @@ msgstr "Výpis byl uložen do souboru %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -899,7 +889,7 @@ msgstr "Položka byla smazána z oblíbených." msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" @@ -927,7 +917,7 @@ msgstr "" "časové limity v PHP." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Zpět" @@ -1003,11 +993,11 @@ 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:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" @@ -1088,100 +1078,108 @@ msgid "Searching" msgstr "Vyhledávám" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "Přepnout zobrazení pole pro zadání dotazu" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Políčko pro SQL dotazy" #: js/messages.php:85 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Políčko pro SQL dotazy" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "Upravit zde" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Změny byly uloženy" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relace smazána" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Relace FOREIGN KEY byla vytvořena" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Interní relace vytvořena" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Chyba: relace nebyla přidána." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Chyba: relace již existuje." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Chyba při ukládání souřadnic pro Návrháře." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Obecné funkce relací" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Vypnuto" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Zvolte, prosím, primární nebo unikátní klíč" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Zvolte která pole zobrazit" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Vytvořit" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "Změnit heslo" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "Více" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Hotovo" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "Předchozí" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1189,231 +1187,231 @@ msgid "Next" msgstr "Další" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "Dnešek" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "leden" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "únor" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "březen" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "duben" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "květen" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "červen" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "červenec" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "srpen" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "září" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "říjen" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "listopad" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "pro" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "Pátek" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "Týd" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "Minuty" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "Sekundy" @@ -1490,9 +1488,9 @@ msgid "Comment" msgstr "Komentář" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Upravit" @@ -1515,15 +1513,15 @@ msgstr "" "Indexy %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být " "odstraněn." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Databáze" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Chyba" @@ -1637,8 +1635,8 @@ msgstr "Vítejte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -1770,6 +1768,32 @@ msgstr "Stáhnout soubor" msgid "Could not open file: %s" msgstr "Chyba při otevírání souboru: %s" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Vložit" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktura" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "Statistika dotazu" @@ -1833,7 +1857,7 @@ msgstr "Chybný index serveru: „%s“" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1887,7 +1911,7 @@ msgstr "MySQL hlásí: " msgid "Failed to connect to SQL validator!" msgstr "Nepodařilo se připojit k serveru kontrolujícímu SQL!" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Vysvětlit SQL" @@ -1899,11 +1923,11 @@ msgstr "Bez vysvětlení (EXPLAIN) SQL" msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Vytvořit PHP kód" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Obnovit" @@ -1912,7 +1936,7 @@ msgstr "Obnovit" msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Zkontrolovat SQL" @@ -2010,7 +2034,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnost %s je omezena známou chybou, viz %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2033,14 +2057,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Zvolte soubor z adresáře pro upload na serveru %s:" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "struktura" @@ -2160,7 +2184,7 @@ msgid "Set value: %s" msgstr "Nastavena hodnota: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Obnovit výchozí hodnotu" @@ -2170,15 +2194,15 @@ msgstr "Povolit uživatelům změnit tuto hodnotu" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Uložit" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Původní" @@ -2316,18 +2340,14 @@ msgid "Confirm DROP queries" msgstr "Potvrzovat DROP dotazy" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "Navigace mezi políčky pomocí Ctrl+šipky" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "Ladit SQL" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "Výchozí směr zobrazování" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" @@ -2335,83 +2355,83 @@ msgstr "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] nebo číslo udávající pro jaký " "maximální počet bude použito vertikální zobrazení" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "Směr zobrazení pro měnění a vytváření polí" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Panel, který je zobrazen při přístupu k databázi" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Výchozí panel databáze" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Panel, který je zobrazen při přístupu k serveru" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Výchozí panel serveru" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Panel, který je zobrazen při přístupu k tabulce" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Výchozí panel tabulky" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Zobrazení binárního obsah šestnáctkově (HEX) jako výchozí" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Zobrazit binární obsah šestnáctkově (HEX)" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Zobrazit přehled databází jako seznam namísto rozbalovacího menu" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Zabrazit databáze jako seznam" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Zobrazit servery jako seznam" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "Upravovat SQL dotazy v samostatném okně" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "Upravovat v okně" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 msgid "Display errors" msgstr "Zobrazit chyby" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "Sbírat chyby" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "Zobrazit ikony pro varování, chyby a informační zprávy" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "Chyby s ikonami" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2419,32 +2439,32 @@ msgstr "" "Zadejte počet sekund, po které může skript běžet, nebo ([kbd]0[/kbd] pro " "žádná omezení" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Časový limit běhu skriptu" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Uložit jako soubor" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Znaková sada souboru" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formát" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Komprese" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2452,169 +2472,169 @@ msgstr "Komprese" msgid "Put columns names in the first row" msgstr "Přidat jména polí na první řádek" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "Pole uzavřené do" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "Pole escapována" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Nahradit NULL hodnoty" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "Odstranit znaky konců řádek z polí" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "Pole oddělené" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Řádky ukončené" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "Verze Excelu" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Vzor pro jméno databáze" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Vzor pro jméno serveru" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Vzor pro jméno tabulky" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 msgid "Dump table" msgstr "Vypsat tabulku" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Použít titulek tabulky" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Titulek tabulky" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Titulek pokračování tabulky" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Návěstí" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME typ" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relace" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 msgid "Export method" msgstr "Způsob exportu" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Uložit na server" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Přepsat existující soubory" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Pamatovat si vzor pro jména souborů" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "Použít zpětné uvozovky u jmen tabulek a polí" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "Jakou syntaxi použít pro vkládání dat" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Datum vytvoření, poslední změny a kontroly" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Používat zpožděné inserty" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Vypnout kontrolu cizích klíčů" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Použít šestnáctkové zobrazení pro BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Použít IGNORE" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maximální velikost vytvořeného dotazu" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 msgid "Export type" msgstr "Typ exportu" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Uzavřít příkazy v transakci" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "Exportovat čas v UTC" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Vynutit zabezpečené spojení při použití phpMyAdmina" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Vynutit SSL spojení" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2622,161 +2642,161 @@ 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Pořadí cizích klíčů v rozbalovací nabídce" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Nejvyšší počet cizích klíčů" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Režim prohlížení" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Přizpůsobí režim prohlížení" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "Přizpůsobí výchozí nastavení" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "Pro vývojáře" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "Nastavení pro vývojáře phpMyAdmina" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Režim úprav" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Přizpůsobí režim úprav" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Výchozí nastavení exportu" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Přizpůsobí výchozí nastavení exportu" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funkce" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 msgid "General" msgstr "Obecné" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "Nejčastěji používaná nastavení" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Výchozí nastavení importu" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Přizpůsobí výchozí nastavení importu" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Import / export" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 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:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Nastavení zobrazení databází" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigační rám" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Přizpůsobí vzhled navigačního rámu" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servery" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Nastavení zobrazení serverů" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabulky" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Nastavení zobrazení tabulek" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Hlavní rám" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Jiná důležitá nastavení" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Nastavení, která nelze zařadit jinam" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 msgid "Page titles" msgstr "Jména stránek" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -2785,22 +2805,22 @@ msgstr "" "Zadejte titulek který zobrazí prohlížeč. V [a@Documentation." "html#cfg_TitleTable]dokumentaci[/a] naleznete jaké proměnné můžete použít." -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Okno dotazů" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Přizpůsobit nastavení okna dotazů" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Zabezpeční" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2808,38 +2828,38 @@ msgstr "" "Prosíme, vemte v potaz, že phpMyAdmin je pouze uživatelské rozhraní a jeho " "funkce neomezují MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Základní nastavení" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 msgid "Authentication" msgstr "Přihlašování" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "Nastavení přihlašování" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Nastavení serveru" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" "Pokročilé nastavení serveru, neměňte tyto volby, pokud nevíte, čeho se týkají" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Vložte parametry připojení k serveru" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "Úložiště konfigurace" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -2849,53 +2869,53 @@ msgstr "" "dodatečným funkcím, viz sekce [a@Documentation.html#linked-tables]úložiště " "nastavení phpMyAdmina[/a] v dokumentaci" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "Sledování změn" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" "Sledování změn provedených v databazí. Vyžaduje nastavenou databázi PMA." -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Přizpůsobení exportu" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Přizpůsobení výchozího nastavení importu" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Přizpůsobení navigačního rámu" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Přizpůsobení hlavního rámu" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL dotazy" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "Políčko pro SQL dotazy" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 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:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "Nastavení SQL dotazů" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 msgid "SQL Validator" msgstr "Kontrolování SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2907,43 +2927,43 @@ msgstr "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. Všechna práva vyhrazena.[/em]" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Úvodní stránka" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Přizpůsobení úvodní stránky" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Panely" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Nastaví, jak mají fungovat panely" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "Textová pole" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "Přizpůsobení textových polí" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "Varování" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Vypnout některá varování zobrazovaná phpMyAdminem" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -2951,15 +2971,15 @@ msgstr "" "Povolí [a@http://cs.wikipedia.org/wiki/Gzip]gzip[/a] kompresi pro " "importování a exportování" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Další parametry pro iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -2967,11 +2987,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:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignorovat chyby ve víceprvkových dotazech" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -2981,21 +3001,21 @@ 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:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Častečný import: povolit přerušení" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignorovat duplicitní řádky" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Přepsat data tabulky souborem" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3003,88 +3023,88 @@ msgstr "" "Výchozí formát; vemte v potaz, že toto závisí na umístění (databáze, " "tabulka) a pouze SQL je vždy dostupný" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Formát importovaného souboru" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Použít klíčové slovo LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Jména polí na prvním řádku" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Neimportovat prázdné řádky" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importovat měny (5.00 místo $5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 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:254 +#: libraries/config/messages.inc.php:253 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:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Částečný import: přeskočit dotazy" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "Počáteční stav pro rozbalovací pole" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 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:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Počet vkládaných řádků" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Cíl pro ikonu rychlého přístupu" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Zobrazí logo v levém rámu" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Zobrazit logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Zobrazí volbu serveru v horní části levého rámu" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Zobrazit výběr serverů" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 msgid "Display table filter" msgstr "Zobrazit rychlé vyhledávání tabulek" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 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:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Oddělovač databázového stromu" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3092,39 +3112,39 @@ msgstr "" "Pouze pro odlehčenou verzi; zobrazí databáze jako strom (určeno oddělovačem " "nastaveným níže)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Stromový pohled na databáze" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Tuto volbu zakažte, pokud chcete vidět všechny databáze najednou" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Použít odlehčenou verzi" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Nejvyšší počet pater tabulkového stromu" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 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:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Oddělovač tabulkovýho stromu" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "URL na které bude odkazovat logo v navigačním rámu" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "URL odkazu loga" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3132,36 +3152,36 @@ 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Cíl odkazu loga" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Zvýrazní server pod kurzorem myši" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Povolit zvýrazňování" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Použije graficky méně náročné panely" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Odlehčené panely" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 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:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "Omezení počtu znaků" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3172,11 +3192,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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Smazat všechny cookies při odhlášení" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3184,11 +3204,11 @@ msgstr "" "Určuje, zda se má pamatovat předchozí přihlášení, při použití přihlašování " "pomocí cookies" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Pamatovat si uživatelské jméno" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3200,53 +3220,53 @@ 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:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Uložení přihlašovací cookie" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Platnost přihlašovací cookie" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 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:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "Větší editační pole pro LONGTEXT" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "Zobrazit ikony na hlavní stránce" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Nejvyšší délka zobrazeného SQL dotazu" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "Uživatelé nemohou nastavit větší hodnotu" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Nejvyšší počet databází zobrazovaných v levém rámu a v seznamu databází" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Nejvyšší počet databází" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3256,19 +3276,19 @@ msgstr "" "množina výsledků delší, zobrazí se odkazy "Předchozí" a "" "Další"." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Nejvyšší počet zobrazených řádků" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Nejvyšší počet tabulek zobrazených v seznamu tabulek" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Nejvyšší počet zobrazených tabulek" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -3276,11 +3296,11 @@ msgstr "" "Vypne varování o chybějícím rozšíření mcrypt při použití přihlašování přes " "cookies" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "Varování o mcrypt" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3288,43 +3308,43 @@ msgstr "" "Počet bytů, které si může skript alokovat, např. [kbd]32M[/kbd] ([kbd]0[/" "kbd] ruší omezení)" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Omezení paměti" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "Zobrazit odkaz pro mazání nalevo" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "Zobrazit odkaz pro mazání napravo" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 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:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "Přirozené pořadí" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 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:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Ikony v navigační liště" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Použije mezipaměť pro GZip výstup, čímž zvýší rychlost HTTP přenosů" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "Mezipaměť pro GZip výstup" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3332,19 +3352,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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Výchozí pořadí řazení" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Použije trvalé (persistentní) připojení k MySQL databázi" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Trvalé připojení" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3353,23 +3373,23 @@ 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Zobrazení ikon pro operace s tabulkami" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Zakáže úpravu polí BLOB a BINARY" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "Chránit binární pole" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3379,107 +3399,107 @@ msgstr "" "nastavení phpMyAdmina). Pokud toto zakážete, využijí se k zobrazení historie " "Java Scriptové rutiny (se zavřením okna ztratíte předchozí historii)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Nepřetržitá historie dotazů" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Kolik dotazů se má držet v historii" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Délka historie dotazů" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Panel zobrazený při otevření nového okna dotazů" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Výchozí panel okna dotazů" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "Výška okna dotazů (v pixelech)" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "Výška okna dotazů" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "Šířka okna dotazů (v pixelech)" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "Šířka okna dotazů" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 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:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Nástroje pro konverzi znakových sad" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 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:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "Opakovat záhlaví" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "Zobrazit ikonu pro nápovědu místo textu Dokumentace" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "Zobrazit ikonu pro nápovědu" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Adresář na serveru pro ukládání exportů" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Adresář pro ukládání" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Pokud tuto volbu nepoužíváte, nechte ji prázdnou" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "Pořadí ověřování hostitelů" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Nechte volbu prázdnou pro výchozí nastavení" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "Pravidla ověřování hostitelů" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Povolit přihlášení bez hesla" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Povolit přihlašování uživatele root" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 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:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "HTTP doméma" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3489,19 +3509,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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "Konfigurační soubor SweKey" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Která přihlašovací metoda se má použít" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Typ přihlašování" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3510,11 +3530,11 @@ msgstr "" "phpmyadmin.net/pma/bookmark]záložek[/a], výchozí nastavení: [kbd]" "pma_bookmarks[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Tabulka záložek" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3522,31 +3542,31 @@ 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:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Tabulka informací o polích" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Zda se má komprimovat připojení k MySQL serveru" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Komprimovat připojení" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Jak se připojit k serveru, ponechte tcp pokud si nejste jistí" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Typ připojení" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Heslo kontrolního uživatele" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3554,19 +3574,19 @@ 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Kontrolní uživatel" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Zda počítat tabulky, když se zobrazuje seznam databází" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Počítat tabulky" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3574,11 +3594,11 @@ msgstr "" "Nechte prázné pro vypnutí návrháře, výchozí nastavení: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Tabulka návrháře" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3586,27 +3606,27 @@ msgstr "" "Více informací v [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "trackeru[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Zakázat použití INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Které rozšíření PHP se má použít, použijte mysqli, pokud je to možné" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Použít rozšíření PHP" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 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:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Skrýt databáze" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3614,31 +3634,31 @@ msgstr "" "Nechte prázné pro vypnutí SQL historie, výchozí hodnota [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "Tabulka pro historii SQL dotazů" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Jméno počítače, kde běží MySQL server" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Jméno serveru" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "URL pro odhlášení" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Pokusit se připojit bez hesla" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Připojit bez hesla" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3651,30 +3671,30 @@ msgstr "" "můžete také změnit pořadí databází, stačí na konci seznamu uvést [kbd]*[/" "kbd] pro zobrazní ostatních v abecedním pořadí." -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Zobrazit jen vybrané databáze" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 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:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Heslo pro přihlašování config" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 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, výchozí nastavení: [kbd]" "pma_table_pages[/kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF schémata: tabulka stránek" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3685,20 +3705,20 @@ msgstr "" "ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "Database name" msgstr "Jméno databáze" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port na kterém poslouchá MySQL server, nechte prázné pro výchozí hodnotu" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Port serveru" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3706,19 +3726,19 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro [a@http://wiki.phpmyadmin.net/pma/" "relation]relace[/a], výchozí nastavení: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Tabulka s relacemi" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "SQL příkaz pro načtení dostupných databází" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "Příkaz SHOW DATABASES" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3726,43 +3746,43 @@ 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:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Jméno signon session" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "URL pro přihlášení" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Socket na kterém poslouchá MySQL server, nechte prázné pro výchozí hodnotu" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Socket serveru" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 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:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Použít SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF schéma: tabulka souřadnic" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3770,11 +3790,11 @@ msgstr "" "Tabulka obsahující popisy polí, nechte prázdnou pro vypnutí této funkce. " "Výchozí hodnota: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "Tabulka s popisem polí" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -3782,43 +3802,43 @@ msgstr "" "Jestli přidat příkaz DROP DATABASE IF EXISTS jako první při vytváření " "databáze." -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "Přidat DROP DATABASE" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "Přidat DROP TABLE" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "Přidat DROP VIEW" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 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:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "Sledované příkazy" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -3826,22 +3846,22 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro sledování SQL dotazů, výchozí " "nastavení: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "Tabulka pro sledování SQL dotazů" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 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:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "Automaticky vytvářet verze" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -3849,15 +3869,15 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro uživatelské nastavení v databázi, " "výchozí nastavení: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "Tabulka pro uživatelská nastavení" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Uživatel pro přihlašování config" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -3865,30 +3885,30 @@ msgstr "" "Vypněte, pokud víte, že vaše tabulky pma_* jsou v pořádku. Tím zabráníte " "kontrolám kompatibility a urychlíte zobrazování stránek" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Podrobná kontrola" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 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ázné, zobrazí se jeho jméno." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Dlouhé jméno tohoto serveru" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Jestli uživateli bude zobrazeno tlačítko "zobrazit vše"" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Umožní zobrazit všechny řádky" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -3899,34 +3919,34 @@ msgstr "" "neomezuje možnost spustit daný příkaz přímo, jen ovlivňuje zobrazení " "formuláře" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Zobrazit formulář pro změnu hesla" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Zobrazit formulář pro vytvoření databáze" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" "Určiuje jestli mají být zobrazeny typy polí při úpravě a vkládání záznamů" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "Zobrazit typy polí" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Zobrazí seznam funkcí v editačním režimu" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Zobrazit seznam fukncí" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -3934,32 +3954,32 @@ msgstr "" "Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Zobrazit odkaz na phpinfo()" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Zobrazí podrobné informace o MySQL serveru" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Zobrazit SQL dotazy" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Zobrazit statistiky" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -3967,11 +3987,11 @@ msgstr "" "Pokud jsou povoleny tooltipy a je nastaven komentář databáze, tato volba " "prohodí komentář a skutečné jméno" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Zobrazit komentář databáze místo jména" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3982,50 +4002,50 @@ msgstr "" "rozdělení podle nastavení $cfg['LeftFrameTableSeparator']. Takže komentář se " "použije jen pro zanoření, ale jména tabulek zůstanou nezměněná" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Zobrazit komentář tabulky místo jména" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Zobrazit komentáře tabulky v tooltipu" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Označí používané tabulky a umožní zobrazit databáze se zamčenými tabulkami." -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Přeskočit zamčené tabulky" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "Vyžaduje povolené kontrolování SQL" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Heslo" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" "[strong]Varování:[/strong] vyžaduje rozšíření PHP SOAP nebo PEAR modul SOAP" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "Povolit kontrolování SQL" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4033,12 +4053,12 @@ msgstr "" "Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Uživatel" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4046,20 +4066,20 @@ msgstr "" "Navrhne jméno nové databáze ve formuláři pro vytváření databáze (pokud je to " "možné) nebo ponechá pole prázné" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Navrhnout jméno nové databáze" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Na hlavní stránce je zobrazeno varování pokud je detekování rozšíření Suhosin" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "Varování o Suhosinu" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4067,11 +4087,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:475 +#: libraries/config/messages.inc.php:474 msgid "Textarea columns" msgstr "Sloupců v textové oblasti" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4079,31 +4099,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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "Řádků v textové oblasti" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 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:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "Titulek prohlížeče pokud není nic vybráno" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "Default title" msgstr "Výchozí titulek" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "Titulek prohlížeče pokud je vybraný server" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "Titulek prohlížeče pokud je vybraná tabulka" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4115,27 +4135,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:487 +#: libraries/config/messages.inc.php:486 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:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Adresář pro nahrávání" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Povolit prohledávání přes celou databázi" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Použít prohledávání databáze" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4143,11 +4163,11 @@ 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:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "Povolit záložku Pro vývojáře v nastaveních" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4157,15 +4177,15 @@ msgstr "" "souboru libraries/import.lib.php naleznete kolik dotazů můžete najednou " "zadat." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Podrobné víceprvkové dotazy" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Zkontrolovat nejnovější verzi" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4173,7 +4193,7 @@ msgstr "" "Povolí [a@http://cs.wikipedia.org/wiki/ZIP_%28souborov%C3%BD_form%C3%A1t%29]" "ZIP[/a] kompresi pro importování a exportování" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4194,72 +4214,72 @@ msgid "Signon authentication" msgstr "Přihlašování signon" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV pomocí LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Sešit OpenDocument" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Rychlý" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Vlastní" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Nastavení exportu databází" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Data" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV pro MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Text OpenDocument" @@ -4299,7 +4319,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Události" @@ -4328,8 +4348,8 @@ msgid "Designer" msgstr "Návrhář" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Oprávnění" @@ -4341,7 +4361,7 @@ msgstr "Rutiny" msgid "Return type" msgstr "Návratový typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4373,18 +4393,18 @@ msgid "Details..." msgstr "Podrobnosti..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Změnit heslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Žádné heslo" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Heslo znovu" @@ -4405,8 +4425,8 @@ msgstr "Vytvořit novou databázi" msgid "Create" msgstr "Vytvořit" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Nemáte oprávnění" @@ -4503,8 +4523,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 " @@ -4525,8 +4545,8 @@ msgid "Compression:" msgstr "Komprese:" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Žádná" @@ -4682,7 +4702,7 @@ msgstr "Setřídit podle klíče" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4715,8 +4735,8 @@ msgstr "Zobrazit binární obsah" msgid "Show BLOB contents" msgstr "Zobrazit obsah BLOBu" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Skrýt" @@ -4734,47 +4754,47 @@ msgstr "Spustit oblíbený dotaz" msgid "The row has been deleted" msgstr "Řádek byl smazán" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Ukončit" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "v dotazu" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Zobrazeny záznamy" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "celkem" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "dotaz trval %01.4f sekund" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Změnit" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Náhled pro tisk (s kompletními texty)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 msgid "Display chart" msgstr "Zobrazit graf" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Odkaz nenalezen" @@ -5237,12 +5257,12 @@ msgid "Data dump options" msgstr "Nastavení výpisu dat" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Vypisuji data pro tabulku" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktura tabulky" @@ -5285,9 +5305,9 @@ msgstr "Zobrazit MIME typy" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Počítač" @@ -5446,40 +5466,40 @@ msgstr "" "Vypisovat pole TIMESTAMP v UTC (usnadní přenost polí TIMESTAMP mezi " "servery v různých časových pásmech)" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedury" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funkce" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Omezení pro exportované tabulky" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Omezení pro tabulku" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRO TABULKU" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELACE PRO TABULKU" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Spouště" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struktura pro pohled" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Zástupná struktura pro pohled" @@ -5512,42 +5532,42 @@ msgstr "Výsledek SQL dotazu" msgid "Generated by" msgstr "Vygeneroval" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Zobrazit obsah tabulky kliknutím na její jméno" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz \"Nastavení\"" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Upravit strukturu kliknutím na odkaz \"Struktura\"" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Přejít na databázi" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "nastavení" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Přejít na tabulku" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Přejít na podhled" @@ -5603,7 +5623,7 @@ msgstr "Chybný počet polí v CSV datech na řádku %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Jméno tabulky" @@ -5681,7 +5701,7 @@ msgid "Charset" msgstr "Znaková sada" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binární" @@ -5972,8 +5992,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Jméno uživatele" @@ -5992,7 +6012,7 @@ msgid "Variable" msgstr "Proměnná" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Hodnota" @@ -6013,34 +6033,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Přidat replikačního uživatele pro podřízený server" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Jakýkoliv uživatel" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Použít textové pole" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Jakýkoliv počítač" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokální" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Použít tabulku Host" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6278,11 +6298,11 @@ msgstr "Spustit SQL dotaz(y) na databázi %s" msgid "Columns" msgstr "Pole" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Umožnit všem uživatelům používat tuto položku" @@ -6314,7 +6334,7 @@ msgstr "Zobrazit" msgid "Location of the text file" msgstr "textový soubor" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "soubor z adresáře pro upload" @@ -6428,8 +6448,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " -"%spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" +"spopisy transformací%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -6470,24 +6490,24 @@ msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co " -"%s dělá." +"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" +"s dělá." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Úložiště" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Definice PARTITION" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "Přidat %s polí" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." @@ -6688,8 +6708,8 @@ msgstr "Více nastavení" msgid "Protocol version" msgstr "Verze protokolu" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Uživatel" @@ -6726,7 +6746,7 @@ msgstr "Oficiální stránka phpMyAdmina" msgid "Mailing lists" msgstr "Mailové konference" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6736,7 +6756,7 @@ msgstr "" "Máte standardní nastavení hesla uživatele root v MySQL. Doporučujeme změnit " "toto nastavení a tím podstatně zvýšit zabezpečení vašeho serveru." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6745,7 +6765,7 @@ msgstr "" "V nastavení PHP máte zapnuto mbstring.func_overload. Toto nastavení není " "kompatibilní s phpMyAdminem a může způsobit poškození dat!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6755,7 +6775,7 @@ msgstr "" "bajtovou znakovou sadu. Bez rozšíření mbstring neumí phpMyAdmin správně " "rozdělovat řetězce a proto to může mít nečekané následky." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6767,13 +6787,13 @@ msgstr "" "platnost cookies nastavená v phpMyAdminovi. Z tohoto důvodu bude vaše " "přilášení neplatné dříve, než je nastaveno v phpMyAdminovi." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nastavte klíč pro šifrování cookies (blowfish_secret) v konfiguračním " "souboru (config.inc.php)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6783,7 +6803,7 @@ msgstr "" "existuje v adresáři s phpMyAdminem. Měli byste ho odstranit, jakmile je " "phpMyAdmin nastaven." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6792,7 +6812,7 @@ msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " "proč." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6802,7 +6822,7 @@ msgstr "" "phpMyAdmin nemusí fungovat správně. Například navigační rám se nebude " "automaticky obnovovat." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6811,7 +6831,7 @@ msgstr "" "Používaný MySQL modul v PHP je kompilován pro MySQL %s a server používá " "verzi %s. Používání různých verzí může způsobit problémy." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6996,8 +7016,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " -"%sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" +"sNastavovacího skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7137,114 +7157,114 @@ msgstr "Úložiště" msgid "View dump (schema) of databases" msgstr "Export databází" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Všechna oprávnění kromě GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Umožňuje měnit strukturu existujících tabulek." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje měnit a rušit uložené procedury." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Umožňuje vytvářet nové databáze a tabulky." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Umožňuje vytvářet uložené procedury." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Umožňuje vytvářet nové tabulky." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Umožňuje vytvářet dočasné tabulky." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvářet, rušit a přejmenovávat účty uživatelů." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Umožňuje vytvářet nové pohledy." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Umožňuje mazat data." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Umožňuje odstranit databáze a tabulky." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Umožňuje odstranit tabulky." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Umožňuje plánovat úlohy pomocí plánovače" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Umožňuje spouštět uložené procedury." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Umožňuje importovat a exportovat data z/do souborů na serveru." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Umožňuje přidávat uživatele a oprávnění bez znovunačítání tabulek " "s oprávněními." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Umožňuje vytvářet a rušit indexy." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Umožňuje vkládat a přepisovat data." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Umožňuje zamknout tabulku pro aktuální vlákno." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Omezuje počet nových připojení, která může uživatel vytvořit za hodinu." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Omezuje, kolik dotazů může uživatel odeslat serveru za hodinu." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7252,60 +7272,60 @@ msgstr "" "Omezuje, kolik dotazů měnících nějakou tabulku nebo databázi může uživatel " "spustit za hodinu." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omezuje počet současných připojení uživatele." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Umožňuje prohlížet procesy všech uživatelů" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nemá žádný vliv v této verzi MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL " "serveru." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Umožní uživateli zjistit, kde je hlavní / pomocný server." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potřebné pro replikaci pomocných serverů." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Umožňuje vybírat data." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Umožňuje přístup k úplnému seznamu databází." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Umožňuje vypnout server." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7315,250 +7335,250 @@ msgstr "" "pro většinu operací pro správu serveru jako nastavování globálních " "proměnných a zabíjení vláken jiných uživatelů." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Umožňuje vytváření a mazání spouští" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Umožňuje měnit data." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Žádná oprávnění." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Žádná" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Poznámka: názvy oprávnění v MySQL jsou uváděny anglicky " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globální oprávnění" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Správa" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Omezení zdrojů" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Přihlašování" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Neměnit heslo" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "Nebyl nalezen žádný uživatel." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Uživatel %s již existuje!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Uživatel byl přidán." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Byla aktualizována oprávnění pro %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Byla zrušena práva pro %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pro %s bylo úspěšně změněno." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Odstraňuji %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Musíte vybrat uživatele, které chcete odstranit!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Načítám oprávnění" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Vybraní uživatelé byli úspěšně odstraněni." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Upravit oprávnění" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Zrušit" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Jakýkoliv" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Přehled uživatelů" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Přidělování" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Přidat nového uživatele" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Odstranit vybrané uživatele" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Odstranit databáze se stejnými jmény jako uživatelé." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Oprávnění pro jednotlivá pole" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Přidat oprávnění pro databázi" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Zástupné znaky _ a % by měly být escapovány pomocí \\ pokud je chcete použít " "jako znak" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Přidat oprávnění pro tabulku" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Vytvořit nového uživatele se stejnými oprávněními a ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... zachovat původního uživatele." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... smazat původního uživatele ze všech tabulek." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... odebrat všechna oprávnění původnímu uživateli a poté ho smazat." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... smazat uživatele a poté znovu načíst oprávnění." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Databáze pro uživatele" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "Žádná" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Přidělit všechna oprávnění na databázi "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Uživatelé mající přístup k „%s“" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globální" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "závislé na databázi" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "maska" @@ -8562,7 +8582,7 @@ msgstr "Nepodařilo se připojit ke zdrojové databázi" msgid "Could not connect to the target" msgstr "Nepodařilo se připojit k cílové databázi" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8850,13 +8870,6 @@ msgstr "Není dostupná žádná novější verze" #: setup/lib/index.lib.php:250 #, php-format -#| msgid "" -#| "This [a@?page=form&formset=features#tab_Security]option[/a] should be " -#| "disabled as it allows attackers to bruteforce login to any MySQL server. " -#| "If you feel this is necessary, use [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " @@ -8882,10 +8895,6 @@ msgstr "" #: setup/lib/index.lib.php:253 #, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Bzip2 compression " -#| "and decompression[/a] requires functions (%s) which are unavailable on " -#| "this system." msgid "" "%sBzip2 compression and decompression%s requires functions (%s) which are " "unavailable on this system." @@ -8904,16 +8913,11 @@ msgstr "" #: setup/lib/index.lib.php:256 #, php-format -#| msgid "You should use SSL connections if your web server supports it" msgid "This %soption%s should be enabled if your web server supports it." msgstr "Měli byste použít %sSSL připojení%s pokud to váš webserver podporuje" #: setup/lib/index.lib.php:258 #, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]GZip compression and " -#| "decompression[/a] requires functions (%s) which are unavailable on this " -#| "system." msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." @@ -8934,10 +8938,6 @@ msgstr "" #: setup/lib/index.lib.php:262 #, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] " -#| "should be set to 1800 seconds (30 minutes) at most. Values larger than " -#| "1800 may pose a security risk such as impersonation." msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." @@ -8952,38 +8952,24 @@ msgid "" "%sLogin cookie validity%s must be set to a value less or equal to %sLogin " "cookie store%s." msgstr "" -"%sPlatnost přihlašovací cookie%s musí být nastavena nejvýše na hodnotu " -"%sUkldádání přihlašovaci cookie%s." +"%sPlatnost přihlašovací cookie%s musí být nastavena nejvýše na hodnotu %" +"sUkldádání přihlašovaci cookie%s." #: setup/lib/index.lib.php:266 #, php-format -#| msgid "" -#| "If you feel this is necessary, use additional protection settings - [a@?" -#| "page=servers&mode=edit&id=%1$d#tab_Server_config]host " -#| "authentication[/a] settings and [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. 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 "" -"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." #: setup/lib/index.lib.php:268 #, php-format -#| msgid "" -#| "You set the [kbd]config[/kbd] authentication type and included username " -#| "and password for auto-login, which is not a desirable option for live " -#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -8999,9 +8985,6 @@ msgstr "" #: setup/lib/index.lib.php:270 #, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] " -#| "requires functions (%s) which are unavailable on this system." msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." @@ -9010,9 +8993,6 @@ msgstr "" #: setup/lib/index.lib.php:272 #, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip decompression[/" -#| "a] requires functions (%s) which are unavailable on this system." msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." @@ -9021,12 +9001,10 @@ msgstr "" "systému." #: setup/lib/index.lib.php:296 -#| msgid "You should use SSL connections if your web server supports it" msgid "You should use SSL connections if your web server supports it." msgstr "Měli byste použít SSL připojení pokud to váš webserver podporuje." #: setup/lib/index.lib.php:306 -#| msgid "You should use mysqli for performance reasons" msgid "You should use mysqli for performance reasons." msgstr "Měli byste použít mysqli z výkonostních důvodů." @@ -9035,12 +9013,10 @@ msgid "You allow for connecting to the server without a password." msgstr "Dovolujete připojit se k serveru bez hesla." #: setup/lib/index.lib.php:351 -#| msgid "Key is too short, it should have at least 8 characters" msgid "Key is too short, it should have at least 8 characters." msgstr "Tajný klíč je příliš krátký, měl by obsahovat alespoň 8 znaků." #: setup/lib/index.lib.php:358 -#| msgid "Key should contain letters, numbers [em]and[/em] special characters" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "Tajný klíč by měl obsahovat číslice, písmena [em]A[/em] zvláštní znaky." @@ -9062,12 +9038,12 @@ msgstr "Zobrazuji SQL dotaz" msgid "Validated SQL" msgstr "Proběhlo zkontrolování SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexy v tabulce `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Název" @@ -9076,71 +9052,71 @@ msgstr "Název" msgid "Table %1$s has been altered successfully" msgstr "Tabulka %1$s byla úspěšně změněna" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funkce" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr " Toto pole možná nepůjde
kvůli délce upravit " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Odstranit odkaz do skladiště BLOBů" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binární - neupravujte" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Nahrát do skladiště BLOBů" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "a poté" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Vložit další řádek" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Upravit následující řádek" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi " "směry" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "Pokračovat ve vkládání s %s řádky" @@ -9245,12 +9221,12 @@ msgstr "" msgid "Redraw" msgstr "Znovu vykreslit" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tabulka %s již existuje!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Byla vytvořena tabulka %1$s." @@ -9725,11 +9701,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Popis" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemáte dostatečná práva na provedení této akce!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Přístup byl změněn." @@ -9741,6 +9717,12 @@ msgstr "Jméno pohledu" msgid "Rename view to" msgstr "Přejmenovat pohled na" +#~ msgid "Field navigation using Ctrl+Arrows" +#~ msgstr "Navigace mezi políčky pomocí Ctrl+šipky" + +#~ msgid "Toggle Query Box Visibility" +#~ msgstr "Přepnout zobrazení pole pro zadání dotazu" + #~ msgid "SVG" #~ msgstr "SVG" diff --git a/po/cy.po b/po/cy.po index 24ad0a3947..a038b9f1ce 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-06-07 20:23+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" @@ -18,7 +18,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Dangos pob" @@ -41,17 +41,20 @@ msgstr "" "ffenest y rhiant, neu bod gosodiadau diogelwch eich porwr yn gwrthod " "caniatáu diweddariadau traws-ffenest." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Chwilio" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -66,14 +69,14 @@ msgstr "Chwilio" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -127,7 +130,7 @@ msgid "Database comment: " msgstr "Sylw cronfa ddata:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Sylwadau tabl" @@ -138,7 +141,7 @@ msgstr "Sylwadau tabl" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -151,8 +154,8 @@ msgstr "Colofn" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -164,13 +167,13 @@ msgstr "Math" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -189,8 +192,8 @@ msgid "Links to" msgstr "Cysylltu i" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -206,10 +209,10 @@ msgstr "Sylwadau" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Na" @@ -225,10 +228,10 @@ msgstr "Na" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgstr "Dewis Pob" msgid "Unselect All" msgstr "Dad-ddewis Pob" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Mae enw'r gronfa ddata'n wag!" @@ -269,81 +272,81 @@ msgstr "Cafodd cronfa ddata %s ei hailenwi i %s" msgid "Database %s has been copied to %s" msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Ailenwch y gronfa ddata i" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Gorchymyn" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Ailenwch y gronfa ddata i" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Cafodd cronfa ddata %s ei gollwng." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "Copïwch y gronfa ddata i" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Copïwch y gronfa ddata i" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Strwythur yn unig" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strwythur a data" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data yn unig" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Defnyddiwch CREATE DATABASE cyn copïo" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Ychwanegwch cyfyngiadau" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Newidiwch i'r gronfa ddata a gopïwyd" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Coladiad" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -355,24 +358,24 @@ msgstr "" "Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u " "hanalluogi. Pwyswch %syma%s i ddarganfod pam." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Sgema perthynol" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabl" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -383,33 +386,33 @@ msgstr "Rhesi" msgid "Size" msgstr "Maint" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "ar ddefnydd" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Cread" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Diweddariad diwethaf" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Gwiriad diwethaf" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -417,7 +420,7 @@ msgstr[0] "%s tabl" msgstr[1] "%s tabl" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -447,7 +450,7 @@ msgid "Descending" msgstr "Disgynnol" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Dangos" @@ -468,8 +471,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Or" @@ -538,17 +541,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s ergyd mewn tabl %s" msgstr[1] "%s ergyd mewn tabl %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Porwch" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -591,69 +596,30 @@ msgstr "Tu fewn tabl(au):" msgid "Inside column:" msgstr "Tu fewn colofn:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Mewnosod" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Strwythur" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Gollwng" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Gwagu" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Cafodd tabl %s ei wagu" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Cafodd golwg %s ei ollwng" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Cafodd tabl %s ei ollwng" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Mae tracio'n weithredol" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Nid yw tracio'n weithredol" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -661,87 +627,111 @@ msgid "" msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Dangos" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Dyblygiad" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Swm" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Gyda'r dewis:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Dewis Pob" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Dad-ddewis Pob" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Allforio" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Argraffu golwg" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Gwagu" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Gollwng" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Gwirio tabl" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimeiddio tabl" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Trwsio tabl" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Dadansoddi tabl" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Geiriadur Data" @@ -749,13 +739,13 @@ msgstr "Geiriadur Data" msgid "Tracked tables" msgstr "Tablau a draciwyd" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -781,8 +771,8 @@ msgstr "Statws" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Gweithred" @@ -825,12 +815,12 @@ msgstr "Tracio tabl" msgid "Database Log" msgstr "Log cronfa ddata" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -909,7 +899,7 @@ msgstr "Cafodd y clustnod ei ddileu." msgid "Showing bookmark" msgstr "Dangos clustnod" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Clustnodi %s a grëwyd" @@ -933,7 +923,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Nôl" @@ -1014,11 +1004,11 @@ msgstr "Mae enw'r gwesteiwr yn wag!" msgid "The user name is empty!" msgstr "Mae enw'r defnyddiwr yn wag!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Mae'r cyfrinair yn wag!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" @@ -1123,108 +1113,116 @@ msgid "Searching" msgstr "Chwilio" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "mewn ymholiad" #: js/messages.php:85 #, fuzzy +#| msgid "Show insert query" +msgid "Show query box" +msgstr "Dangos ymholiad mewnosod" + +#: js/messages.php:86 +#, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr "Mewnol" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Cafodd yr addasiadau eu cadw" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Perthynas wedi'i ddileu" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Perthynas mewnol wedi'i ychwanegu" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Gwall: Perthynas heb ei ychwanegu." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Gwall: perthynas yn bodoli yn barod." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Gwall wrth gadw cyfesurynnau ar gyfer y Dyluniwr." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Analluogwyd" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Dewis Allwedd Estron" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Dewis colofn i'w dangos" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generadu" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Newid cyfrinair" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Llu" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Gorffen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "Cynt" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1232,231 +1230,231 @@ msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "Heddiw" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "Ionawr" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "Chwefror" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "Mawrth" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "Ebrill" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "Mehefin" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "Awst" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "Medi" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "Hydref" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "Tachwedd" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Rhag" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "Wy" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "Awr" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "Munud" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "Eiliad" @@ -1528,9 +1526,9 @@ msgid "Comment" msgstr "Sylw" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Golygu" @@ -1553,15 +1551,15 @@ msgstr "" "Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un " "ohonyn nhw." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Cronfeydd Data" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Gwall" @@ -1810,6 +1808,32 @@ msgstr "Lawrlwytho ffeil" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Mewnosod" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Strwythur" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1870,7 +1894,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Gweinydd" @@ -1926,7 +1950,7 @@ msgstr "Dywedodd MySQL:" msgid "Failed to connect to SQL validator!" msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Esbonio SQL" @@ -1938,11 +1962,11 @@ msgstr "Sgipio Esbonio SQL" msgid "Without PHP Code" msgstr "Heb God PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Creu Cod PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Adfywio" @@ -1951,7 +1975,7 @@ msgstr "Adfywio" msgid "Skip Validate SQL" msgstr "Sgipio Dilysu SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Dilysu SQL" @@ -2049,7 +2073,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2073,7 +2097,7 @@ msgid "Select from the web server upload directory %s:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" "Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a " @@ -2082,7 +2106,7 @@ msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2210,7 +2234,7 @@ msgid "Set value: %s" msgstr "Gosod gwerth: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Adfer gwerth diofyn" @@ -2220,15 +2244,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Cadw" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Ailosod" @@ -2349,139 +2373,135 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Relational display column" msgid "Default display direction" msgstr "Colofn dangosydd perthynol" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Tab a ddengys wrth fyned i dabl" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Tab tabl diofyn" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Dangos cynnwys deuaidd fel HEX" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Dangos cynnwys deuaidd fel HEX" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Dangos cronfeydd data fel rhestr" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Dangos gweinyddion fel rhestr" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Golygu'r rhes nesaf" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display columns table" msgid "Display errors" msgstr "Dangos tabl colofnau" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Cadw fel ffeil" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Set nodau y ffeil" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Fformat" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Cywasgiad" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2489,64 +2509,64 @@ msgstr "Cywasgiad" msgid "Put columns names in the first row" msgstr "Rhoi enwau colofnau yn y rhes gyntaf" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "Amgaewyd colofnau gan" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "Colofnau wedi'u dianc gan" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Amnewid NULL gan" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, 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:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "Terfynwyd colofnau gan" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Terfynwyd llinellau gan" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Argraffiad Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Templed enw cronfa ddata" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Templed enw gweinydd" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Templed enw tabl" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2555,401 +2575,401 @@ msgstr "Templed enw tabl" msgid "Dump table" msgstr "%s tabl" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Cynnwys pennawd y tabl" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Pennawd y tabl" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Include table caption" msgid "Continued table caption" msgstr "Cynnwys pennawd y tabl" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Allwedd y label" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Math MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Perthnasau" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Math allbwn" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Cadw ar y gweinydd" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Trosysgrifo ffeil(iau) sy'n bodoli yn barod" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Cofio templed enw ffeil" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Modd cytunedd SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Allforio" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Nodweddion" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generadu" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Mewnforio" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Ffrâm llywio" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Gweinyddion" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tablau" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Prif ffrâm" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Testun Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page name" msgid "Page titles" msgstr "Enw'r dudalen" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authenticating..." msgid "Authentication" msgstr "Yn dilysu..." -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authenticating..." msgid "Authentication settings" msgstr "Yn dilysu..." -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "Show SQL queries" msgid "SQL queries settings" msgstr "Dangos ymholiadau SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Skip Validate SQL" msgid "SQL Validator" msgstr "Sgipio Dilysu SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2957,281 +2977,281 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Rhybudd" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "Nifer yr ymholiadau i'w neidio o'r dechrau" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases as a list" msgid "Display table filter" msgstr "Dangos cronfeydd data fel rhestr" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3239,416 +3259,416 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Trwsio edafedd" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Cyfrifwch y tablau" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Estyniad PHP i'w ddefnyddio" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Cuddio cronfeydd data sydd yn cydweddu â mynegiant arferol (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Cuddio cronfeydd data" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "Tabl hanes ymholiadau SQL" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Enw'r gwesteiwr ble mae'r gweinydd MySQL yn rhedeg" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Enw gwesteiwr y gweinydd" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "URL allgofnodi" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Ceisiwch â chysylltu heb gyfrinair" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Cysylltwch heb gyfrinair" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3664,251 +3684,251 @@ msgstr "" "ydych am eu defnyddio'n llythrennol, h.y. defnyddiwch 'my\\_db' ac nid " "'my_db'" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Gadewch yn wag os nac ydych yn defnyddio 'config auth'" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Cyfrinair am 'config auth'" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "enw cronfa ddata" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Soced gweinydd" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Defnyddio SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "Sgena PDF: cyfesurynnau tabl" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "Dangos tabl colofnau" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "Ychwanegu DROP DATABASE" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "Ychwanegu DROP TABLE" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "Ychwanegu DROP VIEW" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "Datganiadau i'w tracio" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "Tabl tracio ymholiadau SQL" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Dangos ffurflen newid cyfrinair" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Dangos ffurflen creu cronfa ddata" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show function fields" msgid "Show field types" msgstr "Dangos meysydd swyddogaeth" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Dangos meysydd swyddogaeth" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -3916,41 +3936,41 @@ msgstr "" "Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Dangos cysylltiad i phpinfo()" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Dangos ymholiadau SQL" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Dangos ystadegau" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3958,121 +3978,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Neidio tablau ar glo" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Cyfrinair" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Enw defnyddiwr" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Tab tabl diofyn" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4080,58 +4100,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Cyfeiriadur lanlwytho" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Defnyddio chwiliad cronfa ddata" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Gwiriwch y fersiwn diweddaraf" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4160,45 +4180,45 @@ msgid "Signon authentication" msgstr "Yn dilysu..." #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Taenlen Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Lliw cwstwm" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Databases statistics" msgid "Database export options" @@ -4206,30 +4226,30 @@ msgstr "Ystadegau cronfeydd data" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Data" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV ar gyfer MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Testun Open Document" @@ -4268,7 +4288,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Digwyddiadau" @@ -4297,8 +4317,8 @@ msgid "Designer" msgstr "Dyluniwr" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Breintiau" @@ -4310,7 +4330,7 @@ msgstr "Rheolweithiau" msgid "Return type" msgstr "Dychwelyd math" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4339,18 +4359,18 @@ msgid "Details..." msgstr "Manylion..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Newid cyfrinair" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Dim Cyfrinair" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ail-deipiwch" @@ -4371,8 +4391,8 @@ msgstr "Creu cronfa ddata newydd" msgid "Create" msgstr "Creu" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Dim Breintiau" @@ -4507,8 +4527,8 @@ msgid "Compression:" msgstr "Cywasgiad" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Dim" @@ -4672,7 +4692,7 @@ msgstr "Trefnu gan allwedd" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4705,8 +4725,8 @@ msgstr "Dangos cynnwys deuaidd" msgid "Show BLOB contents" msgstr "Dangos cynnwys BLOB" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Cuddio" @@ -4724,49 +4744,49 @@ msgstr "Gweithredu ymholiad a glustnodwyd" msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Lladd" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "mewn ymholiad" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Yn dangos rhesi" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "cyfanswm" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Newid" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Argraffu golwg (gyda thestunau llawn)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Dangos sgema PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Methu â darganfod y cysylltiad" @@ -5191,12 +5211,12 @@ msgid "Data dump options" msgstr "" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Dadlwytho data ar gyfer y tabl" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Strwythur y tabl ar gyfer y tabl" @@ -5247,9 +5267,9 @@ msgstr "Mathau MIME ar gael" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Gwesteiwr" @@ -5392,40 +5412,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Gweithdrefnau" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Swyddogaethau" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5460,42 +5480,42 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5546,7 +5566,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5623,7 +5643,7 @@ msgid "Charset" msgstr "Set nodau" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Deuaidd" @@ -5905,8 +5925,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "" @@ -5925,7 +5945,7 @@ msgid "Variable" msgstr "Newidyn" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Gwerth" @@ -5944,34 +5964,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Unrhyw ddefnyddiwr" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Defnyddiwch faes testun" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Unrhyw westeiwr" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lleol" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Y Gwesteiwr Hwn" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Defnyddiwch Dabl Gwesteiwyr" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6215,11 +6235,11 @@ msgstr "" msgid "Columns" msgstr "Colofnau" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6251,7 +6271,7 @@ msgstr "Dangos yn unig" msgid "Location of the text file" msgstr "Lleoliad y ffeil destun" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" @@ -6383,21 +6403,21 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Peiriant Storio" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Diffiniad PARTITION" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "Ychwanegwch %s colofn" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." @@ -6565,8 +6585,8 @@ msgstr "Nodweddion perthynas cyffredinol" msgid "Protocol version" msgstr "Fersiwn protocol" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Defnyddiwr" @@ -6603,7 +6623,7 @@ msgstr "Hafan Swyddogol" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6611,21 +6631,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6633,18 +6653,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6653,21 +6673,21 @@ msgstr "" "Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u " "hanalluogi. Pwyswch %syma%s i ddarganfod pam." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6989,321 +7009,321 @@ msgstr "Peiriannau Storio" msgid "View dump (schema) of databases" msgstr "Gwylio dadlwythiad (sgema) cronfeydd data" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Dim" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "" -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7312,89 +7332,89 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8276,7 +8296,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8680,12 +8700,12 @@ msgstr "" msgid "Validated SQL" msgstr "Dilysu SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "" @@ -8694,71 +8714,71 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Swyddogaeth" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Deuaidd - peidiwch â golygu" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Lanlwytho i storfa BLOB" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Mewnosod fel rhes newydd" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "ac yna" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Mewnosod rhes newydd arall" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Dychwelyd i'r dudalen hon" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Golygu'r rhes nesaf" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i " "symud unrhyw le" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8862,12 +8882,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -9341,11 +9361,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Disgrifiad" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "" diff --git a/po/da.po b/po/da.po index c2164e1e41..15fe873ab5 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-21 14:55+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: danish \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Vis alle" @@ -38,17 +38,20 @@ msgstr "" "overliggende vindue eller din browser blokerer for tvær-vindue opdateringer " "i sikkerhedsindstillingerne" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Søg" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Søg" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "Databasekommentar: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Tabel kommentarer" @@ -135,7 +138,7 @@ msgstr "Tabel kommentarer" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -150,8 +153,8 @@ msgstr "Kolonnenavne" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -163,13 +166,13 @@ msgstr "Datatype" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nulværdi" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -188,8 +191,8 @@ msgid "Links to" msgstr "Linker til" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -205,10 +208,10 @@ msgstr "Kommentarer" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nej" @@ -224,10 +227,10 @@ msgstr "Nej" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -254,7 +257,7 @@ msgstr "Vælg alle" msgid "Unselect All" msgstr "Fravælg alle" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Databasenavnet er tomt!" @@ -268,81 +271,81 @@ msgstr "Database %s er blevet omdøbt til %s" msgid "Database %s has been copied to %s" msgstr "Database %s er blevet kopieret til %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Omdøb database til" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Kommando" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Omdøb database til" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Database %s er slettet." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "Kopiér database til" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopiér database til" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Kun strukturen" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Kun data" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Tilføj %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Tilføj begrænsninger" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Skift til den kopierede database" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Kollation (Collation)" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,24 +357,24 @@ msgstr "" "De ekstra features for at arbejde med linkede tabeller er deaktiveret. For " "at se hvorfor, klik %sher%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relationel skematik" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -382,33 +385,33 @@ msgstr "Rækker" msgid "Size" msgstr "Størrelse" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "i brug" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Oprettelse" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Sidste opdatering" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Sidste check" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -417,7 +420,7 @@ msgstr[0] "%s tabel(ler)" msgstr[1] "%s tabel(ler)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -447,7 +450,7 @@ msgid "Descending" msgstr "Faldende" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Vis" @@ -468,8 +471,8 @@ msgid "Del" msgstr "Del (Slet)" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Eller" @@ -542,17 +545,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s hit(s) i tabel %s" msgstr[1] "%s hit(s) i tabel %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Vis" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -597,156 +602,141 @@ msgstr "Indeni tabel(ler):" msgid "Inside column:" msgstr "Indeni tabel(ler):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Indsæt" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktur" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Slet" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Tøm" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s er tømt" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Visning %s er blevet droppet" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s er slettet" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Visning" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikering" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Sum" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard datalageret på denne MySQL-server." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Med det markerede:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Afmærk alt" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Fjern alle mærker" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Eksport" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Vis (udskriftvenlig)" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Tøm" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Slet" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Tjek tabel" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimer tabel" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Reparer tabel" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analysér tabel" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -754,13 +744,13 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -786,8 +776,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Handling" @@ -830,12 +820,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -915,7 +905,7 @@ msgstr "Bogmærket er fjernet." msgid "Showing bookmark" msgstr "Viser bogmærke" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" @@ -943,7 +933,7 @@ msgstr "" "mindre du forøger PHP-tidsbegrænsningerne." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Tilbage" @@ -1024,11 +1014,11 @@ msgstr "Der er intet værtsnavn!" msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Der er ikke angivet noget kodeord!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "De to kodeord er ikke ens!" @@ -1133,114 +1123,122 @@ msgid "Searching" msgstr "Søg" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "i forespørgsel" #: js/messages.php:85 #, fuzzy +#| msgid "Showing SQL query" +msgid "Show query box" +msgstr "Viser SQL-forespørgsel" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Lagre" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Rettelserne er gemt!" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relation slettet" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Intern relation tilføjet" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Fejl: Relation ikke tilføjet." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Fejl: Relation findes allerede." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Fejl ved lagring af koordinater for Designer." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Generelle relationsmuligheder" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Slået fra" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Vælg venligst den primære nøgle eller en unik nøgle" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vælg felt der skal vises" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generér Kodeord" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generér" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ændre kodeord" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "man" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Ingen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1248,96 +1246,96 @@ msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binært " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "maj" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1345,176 +1343,176 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "dec" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "søn" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "man" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "tir" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "fre" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "søn" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "man" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "tir" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ons" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "tor" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "fre" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "i brug" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1590,9 +1588,9 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Ret" @@ -1613,15 +1611,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fejl" @@ -1870,6 +1868,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Indsæt" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktur" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Databases statistics" @@ -1939,7 +1963,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ugyldigt hostnavn for server %1$s. Gennemgå venligst din konfiguration." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1993,7 +2017,7 @@ msgstr "MySQL returnerede: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Forklar SQL" @@ -2005,11 +2029,11 @@ msgstr "Spring over Forklar SQL" msgid "Without PHP Code" msgstr "uden PHP-kode" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Fremstil PHP-kode" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Opdatér" @@ -2018,7 +2042,7 @@ msgstr "Opdatér" msgid "Skip Validate SQL" msgstr "Spring over Validér SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validér SQL" @@ -2118,7 +2142,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2142,14 +2166,14 @@ msgid "Select from the web server upload directory %s:" msgstr "webserver upload-mappe" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2279,7 +2303,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2289,15 +2313,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Gem" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Nulstil" @@ -2418,137 +2442,133 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Relational schema" msgid "Default display direction" msgstr "Relationel skematik" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Redigér næste række" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Vis muligheder" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Send (download)" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Komprimering" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2558,68 +2578,68 @@ msgstr "Komprimering" msgid "Put columns names in the first row" msgstr "Indsæt feltnavne i første række" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Felter indrammet med" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Felter escaped med" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Erstat NULL med" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linjer afsluttet med" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Linjer afsluttet med" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-udgave" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2627,399 +2647,399 @@ msgstr "" msgid "Dump table" msgstr "%s tabel(ler)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Inkluder tabeloverskrift" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Tabeloverskrift" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Fortsat tabeloverskrift" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Mærke nøgle" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relationer" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Eksporttype" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Overskriv eksisterende fil(er)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Brug \"backquotes\" omkring tabeller og felters navne" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitetsmodus" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Oprettet/Opdateret/Check datoer" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Brug forsinkede indsættelser" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Slå fremmednøgle-checks fra" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Brug heksadecimal for BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Brug ignorér inserts" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maksimal længde på oprettet forespørgsel" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Eksport" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Inkludér eksport i en transaktion" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "Forespørgselsresultat operationer" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV (kommasepareret)" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generér" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servere" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabeller" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document tekst" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Side nummer:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Foresp. vindue" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentation" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" msgstr "Server-variabler og indstillinger" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-historik" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3027,281 +3047,281 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Brug tekstfelt" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "Brug tekstfelt" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignorér gentagne rækker" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Erstat data i tabellen med filens data" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Format på importeret fil" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Brug LOCAL nøgleord" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Indsæt feltnavne i første række" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Antal poster (queries) der skal springes over fra start" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Tilføj AUTO_INCREMENT værdi" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Viser kolonne-kommentarer" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3309,426 +3329,426 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Vis/skjul venstre menu" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Arrangér tabelrækkefølge efter" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Foresp. vindue" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Foresp. vindue" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Foresp. vindue" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Reparér tråde" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3737,297 +3757,297 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "databasenavn" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Viser kolonne-kommentarer" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Erklæringer" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatisk genopretnings-modus" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Vis åbne tabeller" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4035,121 +4055,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Kodeord" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Tilføj/Slet felt-kolonne" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Standardværdi" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4157,58 +4177,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4229,43 +4249,43 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV vha. LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document regneark" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Database export options" msgid "Database export options" @@ -4273,30 +4293,30 @@ msgstr "Database eksportindstillinger" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Data" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV til MS Excel-data" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document tekst" @@ -4335,7 +4355,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4364,8 +4384,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegier" @@ -4377,7 +4397,7 @@ msgstr "Rutiner" msgid "Return type" msgstr "Retur type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4407,18 +4427,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Ændre kodeord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Intet kodeord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Skriv igen" @@ -4441,8 +4461,8 @@ msgstr "Opret ny database" msgid "Create" msgstr "Opret" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Ingen privilegier" @@ -4586,8 +4606,8 @@ msgid "Compression:" msgstr "Komprimering" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Ingen" @@ -4761,7 +4781,7 @@ msgstr "Sorteringsnøgle" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4796,8 +4816,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Skjul" @@ -4815,49 +4835,49 @@ msgstr "Udfør forespørgsel iflg. bogmærke" msgid "The row has been deleted" msgstr "Rækken er slettet!" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "i forespørgsel" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Viser poster " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Forepørgsel tog %01.4f sek" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Ændre" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Udskrift-visning (med fulde tekster)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Vis PDF-skematik" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Link ikke fundet" @@ -5296,12 +5316,12 @@ msgid "Data dump options" msgstr "Database eksportindstillinger" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Data dump for tabellen" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktur-dump for tabellen" @@ -5354,9 +5374,9 @@ msgstr "Tilgængelige MIME-typer" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Vært" @@ -5502,40 +5522,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedurer" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funktioner" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Begrænsninger for tabel" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE (MIME-typer for tabellen)" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE (Relationer for tabellen)" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struktur for visning" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Stand-in-struktur for visning" @@ -5570,42 +5590,42 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genereret af" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5657,7 +5677,7 @@ msgstr "Ugyldigt feltantal i CSV-input på linie %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabelnavn" @@ -5736,7 +5756,7 @@ msgid "Charset" msgstr "Tegnsæt" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Binært " @@ -6022,8 +6042,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Brugernavn" @@ -6042,7 +6062,7 @@ msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Værdi" @@ -6061,34 +6081,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Enhver bruger" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Brug tekstfelt" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Enhver vært" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Denne Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Brug Host Tabel" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6342,11 +6362,11 @@ msgstr "Kør SQL-forspørgsel(er) på database %s" msgid "Columns" msgstr "Kolonnenavne" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" @@ -6378,7 +6398,7 @@ msgstr "Kun oversigt" msgid "Location of the text file" msgstr "Tekstfilens placering" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "webserver upload-mappe" @@ -6547,22 +6567,22 @@ msgstr "" "Der er ingen beskrivelse af denne transformation.
Spørg venligst " "forfatteren, hvad %s gør." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Datalager" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Tilføj %s felt(er)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6813,8 +6833,8 @@ msgstr "Generelle relationsmuligheder" msgid "Protocol version" msgstr "Protokolversion" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Bruger" @@ -6851,7 +6871,7 @@ msgstr "Officiel phpMyAdmin hjemmeside " msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6863,7 +6883,7 @@ msgstr "" "kører med denne standardindstilling, er åben for indtrængen, og du " "opfordres stærkt til at gøre noget ved dette sikkerhedshul." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6873,7 +6893,7 @@ msgstr "" "indstilling er ikke kompatibel med phpMyAdmin og kan forårsage ødelæggelse " "af nogle data!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6883,7 +6903,7 @@ msgstr "" "multibyte tegnsæt. Uden mbstring-udvidelsen er phpMyAdmin ude af stand til " "at opdele strenge korrekt og dette kan forårsage uventede resultater" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6891,19 +6911,19 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurationsfilen skal nu bruge et hemmeligt kodeord (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6912,14 +6932,14 @@ msgstr "" "De ekstra features for at arbejde med linkede tabeller er deaktiveret. For " "at se hvorfor, klik %sher%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6928,7 +6948,7 @@ msgstr "" "Din PHP MySQL-biblioteks version %s afviger fra din MySQL server version %s. " "Dette kan forårsage uforudsigelige resultater." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7268,114 +7288,114 @@ msgstr "Datalagre" msgid "View dump (schema) of databases" msgstr "Vis dump (skema) for databaser" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Inkluderer alle privilegier pånær GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Tillader ændring af strukturen på eksisterende tabeller." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Tillader ændring og sletning af gemte rutiner." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Tillader oprettelse af nye databaser og tabeller." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Tillader oprettelse af gemte rutiner." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Tillader oprettelse af nye tabeller." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Tillader oprettelse af midlertidige tabeller." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Tillader oprettelse af nye Allows creating new views." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Tillader sletning af data." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Tillader at droppe databaser og tabeller." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Tillader at droppe tabeller." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Tillader udførelse af gemte rutiner." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Tillader import af data fra og eksport af data til filer." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillader oprettelse af brugere og privilegier uden at genindlæse privilegie-" "tabellerne." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Tillader at skabe og droppe indeks." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Tillader indsættelse og erstatning af data." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Tillader låsning af tabeller for nuværende tråd." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrænser antallet af nye forbindelser brugeren må åbne pr. time." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrænser antallet af forespørgsler brugeren må sende til serveren pr. time." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7383,58 +7403,58 @@ msgstr "" "Begrænser antallet af kommandoer som ændrer enhver tabel eller database " "brugeren må udføre pr. time." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrænser antallet af samtidige forbindelser brugere må have." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denne MySQL version." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Giver brugeren rettigheder til at spørge hvor Slaves / Masters er." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nødvendigt for replikationsslaverne." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Tillader læsning af data." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Giver adgang til den fuldstændige liste over databaser." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Tillader nedlukning af serveren." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7444,159 +7464,159 @@ msgstr "" "Nødvendigt for de fleste administrative operationer som indstilling af " "globale variabler eller for at dræbe andre brugeres tråde." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Tillader ændring af data." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Ingen privilegier." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ingen" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " NB: Navne på MySQL privilegier er på engelsk " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ressourcebegrænsninger" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Login-information" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Kodeord må ikke ændres" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ingen bruger(e) fundet." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Brugeren %s findes i forvejen!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har opdateret privilegierne for %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har tilbagekaldt privilegierne for %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Kodeordet for %s blev korrekt udskiftet." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ingen brugere valgt til sletning!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Genindlæs privilegierne" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "De valgte brugere er blevet korrekt slettet." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Ret privilegier" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Tilbagekald" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Enhver" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Brugeroversigt" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Tildel" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Tilføj en ny bruger" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Fjern valgte brugere" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Drop databaser der har samme navne som brugernes." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7610,50 +7630,50 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%" "s før du fortsætter." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Tilføj privilegier på følgende database" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Tilføj privileges på følgende tabel" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Ret Login-information / Kopiér bruger" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Opret en bruger med samme privilegier og ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... slet den gamle fra brugertabellerne." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... tilbagekald alle aktive privilegier fra den gamle og slet den " "efterfølgende." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7661,44 +7681,44 @@ msgstr "" " ... slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Database for bruger" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ingen" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Opret database med samme navn og tildel alle privilegier" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Brugere med adgang til "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "database-specifik" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "jokertegn" @@ -8704,7 +8724,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9110,12 +9130,12 @@ msgstr "Viser SQL-forespørgsel" msgid "Validated SQL" msgstr "Validér SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Mærke" @@ -9124,73 +9144,73 @@ msgstr "Mærke" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funktion" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " På grund af feltets længde,
kan det muligvis ikke ændres " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Binært - må ikke ændres " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "og derefter" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Redigér næste række" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL" "+piletasterne til at flytte frit omkring" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9298,12 +9318,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -9795,11 +9815,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Beskrivelse" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har ikke tilstrækkelige rettigheder til at være her!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profilen er blevet opdateret." diff --git a/po/de.po b/po/de.po index d90599e5bf..637710df09 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-09-16 12:10+0200\n" "Last-Translator: \n" "Language-Team: german \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Alles anzeigen" @@ -38,17 +38,20 @@ msgstr "" "wurde das Ursprungsfenster geschlossen oder der Browser verhindert den " "Zugriff aufgrund von Ihren Sicherheitseinstellungen." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Suche" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Suche" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "Datenbankkommentar: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Tabellen-Kommentar" @@ -135,7 +138,7 @@ msgstr "Tabellen-Kommentar" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -148,8 +151,8 @@ msgstr "Spalte" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "Typ" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "Verweise" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "Kommentare" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nein" @@ -222,10 +225,10 @@ msgstr "Nein" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "Alle auswählen" msgid "Unselect All" msgstr "Auswahl entfernen" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Der Datenbankname ist leer!" @@ -266,77 +269,77 @@ msgstr "Datenbank %s wurde umbenannt zu %s" msgid "Database %s has been copied to %s" msgstr "Datenbank %s wurde nach %s kopiert" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Datenbank umbenennen in" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Befehl" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Datenbank entfernen" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Datenbank %s wurde gelöscht." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Lösche die Datenbank (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Datenbank kopieren nach" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Nur Struktur" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur und Daten" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Nur Daten" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Vor dem Kopieren CREATE DATABASE ausführen." -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Füge %s hinzu" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Constraints hinzufügen" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Zu kopierter Datenbank wechseln" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Kollation" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -345,22 +348,22 @@ msgstr "" "Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%" "s um herauszufinden warum." -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "Beziehungsschema bearbeiten oder exportieren" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabelle" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -371,33 +374,33 @@ msgstr "Zeilen" msgid "Size" msgstr "Größe" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "in Benutzung" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Erzeugt am" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Aktualisiert am" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Letzter Check am" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -405,7 +408,7 @@ msgstr[0] "%s Tabelle" msgstr[1] "%s Tabellen" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -435,7 +438,7 @@ msgid "Descending" msgstr "absteigend" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Zeige" @@ -456,8 +459,8 @@ msgid "Del" msgstr "Entf." #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "oder" @@ -527,17 +530,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s Treffer in der Tabelle %s" msgstr[1] "%s Treffer in der Tabelle %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Anzeigen" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -579,69 +584,30 @@ msgstr "In der / den Tabelle(n):" msgid "Inside column:" msgstr "In Spalte:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Einfügen" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktur" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Löschen" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Leeren" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Die Tabelle %s wurde geleert." -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Die Ansicht %s wurde gelöscht" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Die Tabelle %s wurde gelöscht." -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Tracking ist aktiviert." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -650,87 +616,111 @@ msgstr "" "Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %" "sDokumentation%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Ansicht" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikation" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Gesamt" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "markierte:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Alle auswählen" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Auswahl entfernen" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Tabellen m. Überhang ausw." -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exportieren" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Leeren" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Löschen" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Überprüfe Tabelle" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimiere Tabelle" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Repariere Tabelle" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analysiere Tabelle" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Strukturverzeichnis" @@ -738,13 +728,13 @@ msgstr "Strukturverzeichnis" msgid "Tracked tables" msgstr "Verfolgte Tabellen" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -770,8 +760,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Aktion" @@ -814,12 +804,12 @@ msgstr "Verfolge Tabelle" msgid "Database Log" msgstr "Datenbank-Log" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "Werte für die Spalte \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -900,7 +890,7 @@ msgstr "SQL-Abfrage wurde gelöscht." msgid "Showing bookmark" msgstr "Bookmark wird angezeigt" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" @@ -929,7 +919,7 @@ msgstr "" "nicht die Ausführungszeitbeschränkungen von php gelockert werden." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Zurück" @@ -1010,11 +1000,11 @@ msgstr "Es wurde kein Host angegeben!" msgid "The user name is empty!" msgstr "Kein Benutzername eingegeben!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" @@ -1115,108 +1105,116 @@ msgid "Searching" msgstr "Suche" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL-Querybox" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL-Querybox" + +#: js/messages.php:86 +#, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr "Inline" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Änderungen gespeichert." -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Verknüpfung gelöscht" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY Relation hinzugefügt" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Interne Verknüpfung hinzugefügt" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Fehler: Verknüpfung nicht hinzugefügt." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Fehler: Verknüpfung existiert bereits." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Fehler beim speichern der Koordinaten für den Designer." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Allgemeine Verknüpfungsfunktionen" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Deaktiviert" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Anzuzeigende Spalte auswählen" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generieren" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Passwort ändern" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Mo" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Fertig" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "Vorherige" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1224,231 +1222,231 @@ msgid "Next" msgstr "Nächste" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "Heute" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "Januar" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "Februar" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "März" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "April" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "Juni" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "Juli" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "August" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "September" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "Oktober" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "November" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Januar" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Februar" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "März" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "August" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "November" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dezember" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "Montag" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "Freitag" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "Wo" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "Stunde" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "Minute" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "Sekunde" @@ -1524,9 +1522,9 @@ msgid "Comment" msgstr "Kommentar" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Bearbeiten" @@ -1549,15 +1547,15 @@ msgstr "" "Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte " "möglicherweise entfernt werden." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Datenbanken" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fehler" @@ -1811,6 +1809,32 @@ msgstr "Datei herunterladen" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Einfügen" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktur" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1880,7 +1904,7 @@ msgstr "" "Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre " "Konfiguration." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1936,7 +1960,7 @@ msgstr "MySQL meldet: " msgid "Failed to connect to SQL validator!" msgstr "Verbindungsaufbau zu MySQL-Server schlug fehl" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL erklären" @@ -1948,11 +1972,11 @@ msgstr "SQL-Erklärung umgehen" msgid "Without PHP Code" msgstr "ohne PHP-Code" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP-Code erzeugen" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Aktualisieren" @@ -1961,7 +1985,7 @@ msgstr "Aktualisieren" msgid "Skip Validate SQL" msgstr "SQL-Validierung umgehen" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL validieren" @@ -2061,7 +2085,7 @@ msgstr "" "%s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2085,14 +2109,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Upload-Verzeichnis auf dem Webserver" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden." #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "Struktur" @@ -2223,7 +2247,7 @@ msgid "Set value: %s" msgstr "Setze Wert: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Voreingestellten Wert wiederherstellen" @@ -2233,15 +2257,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Speichern" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Zurücksetzen" @@ -2383,112 +2407,108 @@ msgid "Confirm DROP queries" msgstr "Nachfrage bei DROP-queries" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Anzeigeoptionen für Datenbank" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Angezeigter Reiter beim Öffnen einer Datenbank" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Standardtab bei Datenbanken" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Angezeigter Reiter beim Öffnen eines Servers" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Standardtab bei Servern" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Angezeigter Reiter beim Öffnen einer Tabelle" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Standardtab bei Tabellen" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Binäre Inhalte in hexadezimal anzeigen" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Binäre Inhalte in hexadezimal anzeigen" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Datenbanken als Liste statt Dropdownfeld anzeigen" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Datenbanken als Liste anzeigen" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Server als Liste statt Dropdownfeld anzeigen" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Server als Liste anzeigen" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "nächste Zeile bearbeiten" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Anzeige verknüpfter Daten" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Fehler ignorieren" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Fehler ignorieren" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2496,32 +2516,32 @@ 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:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Maximale Ausführungszeit" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Senden" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Zeichensatz der Datei" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Kompression" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2531,70 +2551,70 @@ msgstr "Kompression" msgid "Put columns names in the first row" msgstr "Feldnamen in die erste Zeile setzen" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Felder eingeschlossen von" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Felder escaped von" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Ersetze NULL durch" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within columns" msgid "Remove CRLF characters within columns" msgstr "CRLF-Zeichen aus den Feldern entfernen" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Zeilen getrennt mit" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Zeilen getrennt mit" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-Ausgabe" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Schablone für Datenbanknamen" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Schablone für Servernamen" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Schablone für Tabellennamen" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2603,116 +2623,116 @@ msgstr "Schablone für Tabellennamen" msgid "Dump table" msgstr "%s Tabelle" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Tabellenbeschriftung einfügen" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Tabellenbeschriftung" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Fortgesetzte Tabellenbeschriftung" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Kennzeichen" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-Typ" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Tabellenverknüpfungen" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Exporttyp" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Auf Server speichern" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Bestehende Datei(en) überschreiben" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Schablone für Dateinamen merken" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Tabellen- und Feldnamen in einfachen Anführungszeichen " -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL-Kompatibilitätsmodus" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Erzeugungs- / Aktualisierungs- / Überprüfungszeiten" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Verzögerten INSERT-Befehl verwenden" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Fremdschlüsselüberprüfung deaktivieren" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Benutze hexadecimal für BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Fehlerübergehenden INSERT-Befehl verwenden" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maximale Länge der erstellten Abfrage" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Export-Tabellen" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Export in einer Transaktion zusammenfassen" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "Zeit des Exports in UTC" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Sicher Verbindung während der Nutzung von phpMyAdmin erzwingen" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "SSL-Verbindung erzwingen" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2720,191 +2740,191 @@ msgstr "" "Sortierreihenfolge für FOREIGN KEY Dropdownfelder. [kbd]content[/kbd] ist " "der referenzierte Wert, [kbd]id[/kbd] ist der Schlüsselwert" -#: libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Sortierreihenfolge für FOREIN KEY Dropdownfelder" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" "Es wird ein Dropdownfeld verwendet, falls weniger Einträge vorhanden sind." -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "FOREIGN KEY Limit" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Anzeigemodus" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Anzeigemodus anpassen" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Standard-Exporteinstellungen anpassen" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Bearbeitungsmodus" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Bearbeitungsmodus anpassen" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Voreinstellung für Export" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Standard-Exporteinstellungen anpassen" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Features" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generieren" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importieren" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Voreinstellung für Import" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Standard-Importeinstellungen anpassen" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Import/export" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Import/Export-Verzeichnis und Kompressionsoptionen setzen" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Anzeigeoptionen für Datenbank" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigationsframe" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Aussehen der Navigation anpassen" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Anzeigeoptionen für Server" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabellen" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Anzeigeoptionen für Tabellen" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Hauptframe" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Sonstige Einstellungen" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Einstellungen welche in keine andere Kategorie passten" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Seite:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Abfragefenster" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Queryfenster-Einstellungen anpassen" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Sicherheit" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2912,27 +2932,27 @@ msgstr "" "Beachten Sie, dass phMyAdmin nur ein Userinterface ist und in keinster Weise " "die Möglichkeiten von MySQL limitiert" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Grundeinstellungen" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Authentifikationstyp" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Authentifikationstyp" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Serverkonfiguration" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -2940,17 +2960,17 @@ msgstr "" "Erweiterte Serverkonfiguration, ändern Sie diese Einstellungen nur wenn Sie " "wissen was Sie tun" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Geben Sie die Verbindungsparameter für den Server ein" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration: %s" msgid "Configuration storage" msgstr "Konfiguration: %s" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -2965,58 +2985,58 @@ msgstr "" "erhalten, siehe [a@../Documentation.html#linked-tables]linked-tables " "infrastructure[/a]" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "Ändert die Verfolgung" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" "Verfolgen der erfolgten Änderungen in der Datenbank. Erfordert eine " "konfigurierte PMA-Datenbank" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Exportoptionen anpassen" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Importeinstellungen anpassen" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Navigationsframe anpassen" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Hauptframe anpassen" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-Abfragen" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL-Querybox" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Angezeigte Links in SQL-Querybox ändern" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL-Abfragen" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-Verlaufsprotokoll" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3024,49 +3044,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Start" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Startseite anpassen" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Tabs" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Wählen Sie wie die Tabs funktionieren sollen" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Textfeld verwenden" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Exportoptionen anpassen" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! Text" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Warnung" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3074,15 +3094,15 @@ msgstr "" "[a@http://en.wikipedia.org/wiki/Gzip]GZip[/a]-Kompression für Import- und " "Exportoperationen aktiviren" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Extra Parameter für iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3090,11 +3110,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:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Fehler bei Multi-Statements ignorieren" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3104,21 +3124,21 @@ 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:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Teilweiser Import: Unterbrechung erlauben" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignoriere doppelte Zeilen" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Tabelleninhalt ersetzen" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3126,99 +3146,99 @@ 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Dateiformat" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "verwende LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Spaltennamen in der ersten Zeile" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Keine leeren Zeilen importieren" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Währungen importieren ($5.00 zu 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Prozentwerte importieren (12.00% wird zu .12)" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Anzahl der am Anfang zu überspringenden Einträge (Abfragen)" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Teilimport: Überspringe Anfragen" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT nicht für Nullwerte verwenden" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Anzahl der auf einmal einfügbaren Zeilen" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Anzahl der eingefügten Zeilen." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Ziel für Schnellzugriff-Icon" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Logo im linken Frame anzeigen" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Logo anzeigen" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Server-Auswahl oben im linken Frame anzeigen" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Server-Auswahl anzeigen" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Datenbanken als Baum anzeigen" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" "Zeichenkette, die Datenbanken in unterschiedliche Baum-Abschnitte unterteilt" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Trenzeichen für Datenbank-Baum" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3226,40 +3246,40 @@ msgstr "" "Nur für die Light-Version: Datenbanken als Baum anzeigen (wie vom unten " "definierten Trennzeichen bestimmt)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Datenbanken als Baum anzeigen" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Ausschalten, wenn Sie alle Datenbanken auf einmal sehen möchten" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Light-Version benutzen" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Maximale Tiefe des Tabellen-Baumes" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" "Zeichenkette, die Tabellen in unterschiedliche Baum-Abschnitte unterteilt" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Trennzeichen für Tabellen-Baum" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "URL für Logo-Link" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3267,38 +3287,38 @@ msgstr "" "Öffne Links im aktuellen Fenster([kbd]main[/kbd]) oder in einem neuen " "Fenster ([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Ziel für Logo-Link" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Server unter Mauscursor hervorheben" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Hervorhebung ermöglichen" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Benutze graphisch weniger anspruchsvolle Tabs" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Light Tabs" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, 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 "Maximal dargestellte Zeichenzahl bei Anzeige einer SQL-Abfrage" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3308,11 +3328,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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "All Cookies beim Logout löschen" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3320,11 +3340,11 @@ msgstr "" "Legt fest, ob das vorherige login bei Cookie Authentifizierung " "wiederhergestellt werden soll" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Benutzername wiederherstellen" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3336,54 +3356,54 @@ 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:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Login Cookie Speicherung" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Login Cookie Gültigkeit" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Zeichen Maximum beim SQL Befehl anzeigen" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Maximale Anzahl von Datenbanken, die im linken Frame und in der Datenbank-" "Liste angezeigt werden" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Datenbanken Maximum" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3393,29 +3413,29 @@ msgstr "" "vorhanden sind, werden "Previous" and "Next" Links " "angezeigt." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Maximale Anzahl der angezeigten Zeilen" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Maximale Anzahl der in einer Tabellenliste angezeigten Tabellen" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Tabellen Maximum" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3423,47 +3443,47 @@ 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Speicher Limit" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Zeige/Verstecke linkes Menü" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Tabelle sortieren nach" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Verwende nur Icons, nur Text oder beides" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Navigationsleiste mit Icons" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 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:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip Ausgabepufferung" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3475,46 +3495,46 @@ msgstr "" "[kbd]SMART[/kbd] -d.h. absteigende Sortierung für die Feldtypen TIME, DATE, " "DATETIME und TIMESTAMP, aufsteigende Sortierung für die anderen Feldtypen" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Voreingestellte Sortierung" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Verwende andauernde Verbindungen zu MySQL Datenbanken" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Persistente Verbindung" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Tabellenbearbeitung mittels Icons" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Verbiete Änderungen an BLOB und BINARY Feldern" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Schütze BINARY Felder" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3529,119 +3549,119 @@ msgstr "" "der Abfragehistorien, die beim Schließen des Fensters verloern gehen, " "eingesetzt, " -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Anfragelog speichern" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Anzahl der Abfragen in der Historie" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Länge der Abfragehistori" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Angezeigtes Tab beim Öffnen eines neuen Abfragefensters" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Voreingestelltes Tab für Abfragefenster" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Abfragefenster" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Abfragefenster" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Abfragefenster" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "Wahl der Funktionen zur Zeichensatz-Konvertierung" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Umwandlungs Engine" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Reparaturprozess" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Verzeichnis auf dem Server für Exports" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Speicher Verzeichnis" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Leer lassen, wenn unbenutzt" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Host Authentifikationsreihenfolge" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Leer lassen, um Voreinstellungen zu verwenden." -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Host Authentifikationsregeln" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Erlaube Logins ohne Passwort" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Erlaube root Login" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm Name , der bei HTTP Auth angezeigt wird" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3651,19 +3671,19 @@ msgstr "" "Authentifizierung[/a] (liegt nicht im Webhauptverzeichnis (document root); " "empfohlen: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "SweKey Konfigurationsdatei" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Zu benutzende Authentifikations-Methode" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Authentifikationstyp" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3671,11 +3691,11 @@ msgstr "" "Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" "a] Unterstützung, Vorschlag: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Bookmark Table" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3683,32 +3703,32 @@ msgstr "" "Leer lassen für keine Spalten Kommentare/mime types,Vorschlag: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Column Info Table" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Komprimiere die Verbindung zum MySQL-Server" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Verbindung komprimieren" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 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:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Art der Verbindung" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Control-user Passwort" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3716,19 +3736,19 @@ 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Control-user" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Zähle Tabellen bei Anzeige der Datenbank-Liste" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Zähle Tabellen" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3736,11 +3756,11 @@ msgstr "" "Leer lassen für keine Designer Unterstützung, Vorschlag: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Designer Coords Table" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3748,29 +3768,29 @@ msgstr "" "Mehr Informationen auf [a@http://sf.net/support/tracker.php?aid=1849494]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Benutzung von INFORMATION_SCHEMA deaktivieren" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Die zu verwendente PHP Erweiterung; sie sollten mysqli verwenden wenn es " "verfügbar ist" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "PHP Erweiterung" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Verberge Datenbanken, die auf regular expressions (PCRE) passen" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Datenbanken verstecken" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3778,31 +3798,31 @@ msgstr "" "Leer lassen für keine SQL Abfragehistorien-Unterstützung, Vorschlag: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "History Table" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Rechnername auf dem der MySQL Server läuft" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Hostname" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Logout URL" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Versuche ohne Passwort zu verbinden" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Ohne Passwort verbinden" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3817,30 +3837,30 @@ msgstr "" "MySQL wildcard characters (% und _) sind möglich , mit \\ wird die " "urspüngliche Bedeutung wiederhergestellt, d.h. 'my\\_db' und nicht 'my_db'" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Nur aufgelistete Datenbanken zeigen" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Leer lassen, wenn config auth nicht verwendet wird" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Passwort für config Authentifikation" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 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:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF Pages Table" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3850,21 +3870,21 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a] für komplette Information. Leer lassen " "für keien Unterstützung. Vorschlag: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "Datenbank-Name" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Port" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3872,19 +3892,19 @@ msgstr "" "Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/relation]relation-" "links[/a] Unterstützung, Vorschlag: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Relation Table" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "SQL Komando, um verfügbare Datenbanken abzurufen" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES Befehl" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3892,43 +3912,43 @@ msgstr "" "Siehe [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " "types[/a] für ein Beispiel" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Signon Session-Name" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Sockel" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Ermögliche SSL für Verbindung zum MySQL-Server" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Benutze SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Leer lassen für keine PDF Schema Unterstützung, Vorschlag: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "Table Coords Table" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -3940,13 +3960,13 @@ msgstr "" "Tabelle zur Beschreibung der Anzeigefelder, leer lassen für keine " "Unterstützung; Vorschlag: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Table Info Table" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -3954,11 +3974,11 @@ msgstr "" "DROP DATABASE IF EXISTS statement beim Erstellen einer neuen Datenbank als " "erste Zeile loggen" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "DROP DATABASE hinzufügen" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -3966,11 +3986,11 @@ msgstr "" "DROP TABLE IF EXISTS statement beim Erstellen einer neuen Ansicht als erste " "Zeile loggen" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "DROP TABLE hinzufügen" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -3978,21 +3998,21 @@ msgstr "" "DROP VIEW IF EXISTS statement beim Erstellen einer neuen Ansicht als erste " "Zeile loggen" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "DROP VIEW hinzufügen" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Legt die Liste der Statements fest, die die automatische Versionserstellung " "für neue Versionen verwendeet" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "Zu verfolgende Statements" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4000,11 +4020,11 @@ msgstr "" "Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "Tabelle mit Verfolgung der SQL-Abfragen" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4012,11 +4032,11 @@ msgstr "" "Automatische Versionserstellung für Tabellen und Ansichten durch den " "Verlaufs-mechanismus" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "Versionen automatisch erzeugen" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -4028,15 +4048,15 @@ msgstr "" "Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Benutzername für config Authentifikation" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4044,11 +4064,11 @@ msgstr "" "Ausschalten, wenn die pma_* Tabellen aktuell sind. Dies verhindert " "Kompatibilitätsprüfungen und verbessert so die Leistung" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Tabellenprüfung" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4056,11 +4076,11 @@ msgstr "" "Benutzerfreundlicher Name des Servers. Leer lassen um den tatsächlichen " "Rechnernamen anzuzeigen." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Serverbezeichnung" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4069,11 +4089,11 @@ msgstr "" "Ob dem Benutzer ein "show all (records)" Button angezeigt werden " "soll" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Erlaube alle Zeilen anzuzeigen" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4084,35 +4104,35 @@ msgstr "" "dieses beschränkt nicht die Möglichkeit der direkten Ausführung des selben " "Befehls." -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Zeige Formular zur Passwort-Änderung" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Zeige Formular zur Datenbank-Erstellung" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Zeige alle offenen Tabellen" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Im Bearbeiten/Einfügen Modus Funktionsfelder anzeigen" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Funktionsfelder anzeigen" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4120,34 +4140,34 @@ msgstr "" "Zeige Link zu [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "Ausgabe" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Zeige phpinfo() Link" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Zeige detailierte MySQL-Server Informationen" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Zeige SQL Anfragen" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Zeige Statistik" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4155,11 +4175,11 @@ msgstr "" "Wenn Tooltips eingeschaltet sind und Datenbank-Kommentare vorhanden sind, " "vertausch dies den Kommentar und den Namen" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Zeige Datenbank-Kommentar anstelle des Namens" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4171,61 +4191,61 @@ msgstr "" "['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu verschachteln. Nur " "der Ordner erhält den Alias, der Tabellename bleibt unverändert." -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Zeige Tabellen-Kommentar anstelle des Namens" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Tabellen-Kommentar als Tooltip anzeigen" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 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:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Überspringe gesperrte Tabellen" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Passwort" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Benutzername" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4233,65 +4253,65 @@ msgstr "" "Schlage (wenn möglich) einen Datenbank-Namen im "Create Database" " "Formular vor oder lasse das Textfeld leer" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Schlage einen neuen Datenbank-Namen vor" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR Textfeldspalten" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR Textfeldzeilen" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Standardtab bei Tabellen" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4303,37 +4323,37 @@ 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:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste der Vertrauenswürdigen Proxies für IP Filter" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Upload Verzeichnis" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Erlaube Suche in der gesammten Datenbank" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Datenbank Suche" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4343,15 +4363,15 @@ msgstr "" "Abfragen. In libraries/import.lib.php sind die Voreinstellungen, wieviele " "Abfragen ein Statement enthalten darf." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Auswirkungen von Mehrfachbefehlen zeigen" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Auf neue Version prüfen" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4359,7 +4379,7 @@ msgstr "" "[a@http://en.wikipedia.org/wiki/Gzip]GZip[/a]-Kompression für Import- und " "Exportoperationen aktiviren" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4388,74 +4408,74 @@ msgid "Signon authentication" msgstr "Host Authentifikationsreihenfolge" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV mit LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Mappe" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Mappe" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Kalkulationstabelle" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Benutzerdefinierte Farbe" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Export-Optionen der Datenbank" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Daten" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV-Daten für MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4495,7 +4515,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Ereignisse" @@ -4524,8 +4544,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Rechte" @@ -4537,7 +4557,7 @@ msgstr "Routinen" msgid "Return type" msgstr "Rückgabe-Typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4571,18 +4591,18 @@ msgid "Details..." msgstr "Details ..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Passwort ändern" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Kein Passwort" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Wiederholen" @@ -4603,8 +4623,8 @@ msgstr "Neue Datenbank anlegen" msgid "Create" msgstr "Anlegen" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Keine Rechte" @@ -4751,8 +4771,8 @@ msgid "Compression:" msgstr "Kompression" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "keine" @@ -4933,7 +4953,7 @@ msgstr "Nach Schlüssel sortieren" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4969,8 +4989,8 @@ msgid "Show BLOB contents" msgstr "BLOB Inhalte anzeigen" # Hide heist im deutschen in der EDV ausblenden -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Verstecken" @@ -4988,49 +5008,49 @@ msgstr "Gespeicherte SQL-Anfrage ausführen" msgid "The row has been deleted" msgstr "Die Zeile wurde gelöscht." -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Beenden" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "in der Abfrage" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Zeige Datensätze " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "insgesamt" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "die Abfrage dauerte %01.4f sek." -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Ändern" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Druckansicht (vollständige Textfelder)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-Schema anzeigen" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden." @@ -5506,12 +5526,12 @@ msgid "Data dump options" msgstr "Anzeigeoptionen für Datenbank" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Daten für Tabelle" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Tabellenstruktur für Tabelle" @@ -5564,9 +5584,9 @@ msgstr "Verfügbare MIME-Typen" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -5713,40 +5733,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Prozeduren" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funktionen" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Constraints der exportierten Tabellen" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Constraints der Tabelle" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPEN DER TABELLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONEN DER TABELLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Trigger" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struktur des Views" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Stellvertreter-Struktur des Views" @@ -5781,45 +5801,45 @@ msgstr "SQL-Abfrageergebnis" msgid "Generated by" msgstr "Erstellt von" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Zeilen)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier " "können Sie:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Zum Ändern der Struktur auf das entsprechenden \"Struktur\" klicken" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Gehe zur Datenbank" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "Einstellungen" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Gehe zur Tabelle" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Gehe zum View" @@ -5871,7 +5891,7 @@ msgstr "Ungültige Anzahl an Feldern in Zeile %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabellenname" @@ -5956,7 +5976,7 @@ msgid "Charset" msgstr "Zeichensatz" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binär" @@ -6251,8 +6271,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Benutzername" @@ -6271,7 +6291,7 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Wert" @@ -6292,34 +6312,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Benutzer für den Replication-Slave hinzufügen" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Jeder Benutzer" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Textfeld verwenden" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Jeder Host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Dieser Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Verwende Hosttabelle" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6574,11 +6594,11 @@ msgstr "SQL-Befehl(e) in Datenbank %s ausführen" msgid "Columns" msgstr "Spaltennamen" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" @@ -6610,7 +6630,7 @@ msgstr "Nur zeigen" msgid "Location of the text file" msgstr "Datei" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Upload-Verzeichnis auf dem Webserver" @@ -6780,21 +6800,21 @@ msgstr "" "Informationen wenden Sie sich bitte an den Autoren der Funktion "%" "s"." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Tabellenformat" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "PARTITION Definition" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "%s Spalte(n) einfügen" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7059,8 +7079,8 @@ msgstr "Einstellungen" msgid "Protocol version" msgstr "Protokoll-Version" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Benutzer" @@ -7097,7 +7117,7 @@ msgstr "Offizielle Homepage " msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7110,7 +7130,7 @@ msgstr "" "leicht von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke " "unbedingt schließen!" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7120,7 +7140,7 @@ msgstr "" "aktiviert. Diese ist nicht kompatibel zu phpMyAdmin, weshalb es zu Problemen " "und Datenverlust kommen kann." -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7131,7 +7151,7 @@ msgstr "" "Erweiterung ist phpMyAdmin nicht in der Lage Zeichenketten zu trennen, was " "zu unerwarteten Ergebnissen führen kann." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7143,13 +7163,13 @@ msgstr "" "die in phpMyAdmin konfigurierte Cookiegültigkeit, deshalb wird Ihre " "Anmeldung eher ablaufen als in phpMyAdmin konfiguriert." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Ab sofort muss ein geheimes Passwort zur Verschlüsselung in der " "Konfigurationsdatei gesetzt werden (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7158,7 +7178,7 @@ msgstr "" "Das [code]config[/code] Unterverzeichnis des Installationsskripts ist noch " "vorhanden. Sie sollten es nach der Konfiguration von phpMyAdmin entfernen." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7167,7 +7187,7 @@ msgstr "" "Die zusätzlichen Funktionen für verknüpfte Tabellen wurden automatisch " "deaktiviert. Klicken Sie %shier%s um herauszufinden warum." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7177,7 +7197,7 @@ msgstr "" "von phpMyAdmin stehen daher nicht zur Verfügung. Zum Beispiel wird die " "Navigation nicht automatisch aktualisiert." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7186,7 +7206,7 @@ msgstr "" "Die Version der verwendeten PHP MySQL Bibliothek %s unterscheidet sich von " "der Version des MySQL Servers %s. Dies kann zu unerwartetem Verhalten führen." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7534,117 +7554,117 @@ msgstr "Tabellenformate" msgid "View dump (schema) of databases" msgstr "Dump (Schema) der Datenbanken anzeigen" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Enthält alle Rechte bis auf GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Erlaubt das Verändern und Löschen von Routinen." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Erlaubt das Erstellen von gespeicherten Routinen." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Erlaubt das Erstellen neuer Tabellen." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Erlaubt das Erstellen temporärer Tabellen." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Erlaubt das Erstellen von Views." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Erlaubt das Löschen von Daten." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Erlaubt das Löschen ganzer Tabellen." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Erlaubt das Ausführen von Routinen." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erlaubt das Hinzufügen von Benutzern und Rechten ohne den die " "Benutzerprofile neu laden zu müssen." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Erlaubt das Erstellen und Löschen von Indizes." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Erlaubt die Sperrung bestimmter Tabellen." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde " "aufbauen darf." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7652,63 +7672,63 @@ msgstr "" "Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an " "allen Datenbanken und Tabellen vornehmen darf." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Hat keinen Effekt in dieser MySQL-Version." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Erlaubt das erneute Laden von Servereinstellungen und das Leeren der " "Zwischenspeicher zur Laufzeit." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme " "befinden" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Wird für die Replication-Slave-Systeme benötigt." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Erlaubt das Auslesen von Daten." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gewährt Zugang zur vollständigen Datenbankliste." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Erlaubt das Ausführen von 'SHOW CREATE VIEW'." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Erlaubt das Beenden des Servers." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7718,155 +7738,155 @@ msgstr "" "bereits erreicht ist; Wird für viele administrative Operationen, wie das " "Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Erlaubt das Erzeugen und Löschen Triggern" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Erlaubt das Verändern von gespeicherten Daten." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Keine Rechte." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Kein(e)" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "MySQL-Rechte werden auf Englisch angegeben." -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globale Rechte" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ressourcenbeschränkungen" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Der Wert 0 (null) entfernt die Beschränkung." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Anmelde-Informationen" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Passwort nicht verändert" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "Es wurde kein Benutzer gefunden." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Der Benutzer %s existiert bereits!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Die Rechte für %s wurden geändert." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Sie haben die Rechte für %s entfernt." -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Das Passwort für %s wurde geändert." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Lösche %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Lade die Benutzertabellen neu" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Die gewählten Benutzer wurden gelöscht." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Rechte ändern" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Entfernen" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Jeder" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Benutzerübersicht" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Neuen Benutzer hinzufügen" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Die ausgewählten Benutzer löschen" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Den Benutzern alle Rechte entziehen und sie anschließend aus den " "Benutzertabellen löschen." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Die gleichnamigen Datenbanken löschen." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7880,93 +7900,93 @@ msgstr "" "vorgenommen wurden. In diesem Fall sollten Sie %sdie Benutzerprofile neu " "laden%s bevor Sie fortfahren." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Spaltenspezifische Rechte" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Rechte zu folgender Datenbank hinzufügen" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Platzhalter _ und % sollten mit einem \\ escaped werden, um das gewünschte " "Sonderzeichen einzubinden" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Rechte zu folgender Tabelle hinzufügen" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Anmelde-Information ändern / Benutzer kopieren" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... behalte den alten bei." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... lösche den alten von den Benutzertabellen." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... entziehe dem alten alle Rechte und lösche ihn anschließend." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... lösche den alten und lade anschließend die Benutzertabellen neu." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Datenbank für Benutzer" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "Kein(e)" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen " "(username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gewähre alle Rechte auf die Datenbank "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Benutzer mit Zugriff auf "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "datenbankspezifisch" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "Platzhalter" @@ -9015,7 +9035,7 @@ msgstr "Es konnte keine Verbindung zu Quell-Datenbank hergestellt werden" msgid "Could not connect to the target" msgstr "Es konnte keine Verbindung zu Ziel-Datenbank hergestellt werden" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9532,12 +9552,12 @@ msgstr "Ansicht als SQL Abfrage" msgid "Validated SQL" msgstr "SQL validieren" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Titel" @@ -9546,73 +9566,73 @@ msgstr "Titel" msgid "Table %1$s has been altered successfully" msgstr "Die Tabelle %1$s wurde erfolgreich geändert" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funktion" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "Wegen seiner Länge ist dieses
Feld vielleicht nicht editierbar." -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "BLOB-Referenz entfernen" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binär - nicht editierbar!" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Zu BLOB-Repository hochladen" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Als neuen Datensatz speichern " -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Zeige insert Abfrage" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "und dann" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "zurück" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten " "beliebig bewegen" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9724,12 +9744,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Die Tabelle %s existiert bereits!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Die Tabelle %1$s wurde erzeugt." @@ -10220,11 +10240,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Beschreibung" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Sie haben nicht genug Rechte um fortzufahren!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Benutzer wurde geändert." diff --git a/po/el.po b/po/el.po index 67f2f344e0..919f6e3c1a 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-09-06 11:51+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Εμφάνιση όλων" @@ -38,17 +38,20 @@ msgstr "" "κλείσατε το μητρικό παράθυρο ή ο περιηγητής σας δεν επιτρέπει τις ανανεώσεις " "μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Αναζήτηση" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Αναζήτηση" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "Σχόλιο βάσης: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Σχόλια Πίνακα" @@ -135,7 +138,7 @@ msgstr "Σχόλια Πίνακα" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -148,8 +151,8 @@ msgstr "Στήλη" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "Τύπος" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Κενό" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "Σύνδεση με" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "Σχόλια" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Όχι" @@ -222,10 +225,10 @@ msgstr "Όχι" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "Επιλογή όλων" msgid "Unselect All" msgstr "Αποπεπιλογή όλων" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Το όνομα της βάσης δεδομένων είναι κενό!" @@ -266,77 +269,77 @@ msgstr "Η βάση δεδομένων %s μετονομάστηκε σε %s" msgid "Database %s has been copied to %s" msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Εντολή" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Μετακίνηση βάσης δεδομένων σε" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Η βάση δεδομένων %s διεγράφη." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Διαγραφή της βάση δεδομένων (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Αντιγραφή βάσης δεδομένων σε" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Μόνο η δομή" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Δομή και δεδομένα" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Μόνο τα δεδομένα" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "ΔΗΜΙΟΥΡΓΙΑ ΒΑΣΗΣ ΔΕΔΟΜΕΝΩΝ πριν την αντιγραφή" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Προσθήκη περιορισμών" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Σύνθεση" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -348,22 +351,22 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματος" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Πίνακας" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -374,33 +377,33 @@ msgstr "Εγγραφές" msgid "Size" msgstr "Μέγεθος" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "σε χρήση" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Δημιουργία" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Τελευταία ενημέρωση" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "τελευταίος έλεγχος" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -408,7 +411,7 @@ msgstr[0] "%s Πίνακας" msgstr[1] "%s Πίνακες" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -438,7 +441,7 @@ msgid "Descending" msgstr "Φθίνουσα" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Εμφάνιση" @@ -459,8 +462,8 @@ msgid "Del" msgstr "Διαγραφή" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Ή" @@ -528,17 +531,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s απατέλεσμα στον πίνακα %s" msgstr[1] "%s αποτελέσματα στον πίνακα %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Περιήγηση" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -580,69 +585,30 @@ msgstr "Μέσα στους πίνακες:" msgid "Inside column:" msgstr "Εσωτερικό πεδίο:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Προσθήκη" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Δομή" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Διαγραφή" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Άδειασμα" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Ο Πίνακας %s άδειασε" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Η προβολή %s διαγράφτηκε" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Ο Πίνακας %s διεγράφη" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Η παρακολούθηση είναι ενεργοποιημένη." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν έιναι ενεργοποιημένη." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -651,88 +617,112 @@ msgstr "" "Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %" "sτεκμηρίωση%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Προβολή" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Αναπαραγωγή" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Σύνολο" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Επιλογή όλων" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Απεπιλογή όλων" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Εξαγωγή" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Άδειασμα" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Διαγραφή" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Έλεγχος πίνακα" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Βελτιστοποίηση Πίνακα" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Επιδιόρθωση πίνακα" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Ανάλυση Πίνακα" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Περιληπτικός πίνακας δεδομένων" @@ -740,13 +730,13 @@ msgstr "Περιληπτικός πίνακας δεδομένων" msgid "Tracked tables" msgstr "Παρακολουθούμενοι πίνακες" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -772,8 +762,8 @@ msgstr "Κατάσταση" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Ενέργεια" @@ -816,12 +806,12 @@ msgstr "Παρακολούθηση πίνακα" msgid "Database Log" msgstr "Καταγραφή Βάσης Δεδομένων" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -900,7 +890,7 @@ msgstr "Η ετικέτα διεγράφη." msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" @@ -928,7 +918,7 @@ msgstr "" "και αν αυξήσετε τα χρονικά όρια της php." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Επιστροφή" @@ -1011,11 +1001,11 @@ msgstr "Το όνομα του Συστήματος είναι κενό!" msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Ο Κωδικός Πρόσβασης είναι κενός!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" @@ -1122,110 +1112,118 @@ msgid "Searching" msgstr "Αναζήτηση" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Χώρος Ερωτήματος SQL" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Χώρος Ερωτήματος SQL" + +#: js/messages.php:86 +#, fuzzy msgid "Inline Edit" msgstr "Μηχανές" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Η συσχέτιση διαγράφηκε" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Προστέθηκε η συσχέτιση ΜΗ ΔΙΑΚΡΙΤΟΥ ΚΛΕΙΔΙΟΥ (FOREIGN KEY)" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Η εσωτερική συσχέτιση προστέθηκε" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Σφάλμα: Δεν προστέθηκε η συσχέτιση." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Σφάλμα: Η συσχέτιση υπαρχει ήδη." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Σφάλμα αποθήκευσης συντεταγμένων για τον Σχεδιαστή." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Γενικές λειτουργίες συσχέτισης" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Απενεργοποιημένη" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Επιλέξτε πεδίο για εμφάνιση" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Παραγωγή Κωδικού Πρόσβασης" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Παραγωγή" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Αλλαγή κωδικού πρόσβασης" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy msgid "More" msgstr "Δευτέρα" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "Δωρεά" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy msgid "Prev" msgstr "Προηγούμενο" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1233,253 +1231,253 @@ msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy msgid "Today" msgstr "Σύνολο" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy msgid "January" msgstr "Δυαδικό" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy msgid "March" msgstr "Μαρτίου" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy msgid "April" msgstr "Απριλίου" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Μαΐου" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy msgid "June" msgstr "Ιουνίου" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy msgid "July" msgstr "Ιουλίου" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy msgid "August" msgstr "Αυγούστου" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Ιανουαρίου" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Φεβρουαρίου" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Μαρτίου" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Απριλίου" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy msgctxt "Short month name" msgid "May" msgstr "Μαΐου" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Ιουνίου" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Ιουλίου" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Αυγούστου" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Σεπτεμβρίου" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Οκτωβρίου" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Νοεμβρίου" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Δεκεμβρίου" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Κυριακή" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Δευτέρα" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Τρίτη" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Τετάρτη" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Πέμπτη" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Παρασκευή" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Σάββατο" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy msgid "Su" msgstr "Κυριακή" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy msgid "Mo" msgstr "Δευτέρα" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy msgid "Tu" msgstr "Τρίτη" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy msgid "We" msgstr "Τετάρτη" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy msgid "Th" msgstr "Πέμπτη" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy msgid "Fr" msgstr "Παρασκευή" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy msgid "Sa" msgstr "Σάββατο" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy msgid "Minute" msgstr "σε χρήση" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy msgid "Second" msgstr "ανά δευτερόλεπτο" @@ -1556,9 +1554,9 @@ msgid "Comment" msgstr "Σχόλιο" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Επεξεργασία" @@ -1581,15 +1579,15 @@ msgstr "" "Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να " "απομακρυνθεί." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Βάσεις Δεδομένων" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "λάθος" @@ -1841,6 +1839,32 @@ msgstr "Λήψη αρχείου" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Προσθήκη" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Δομή" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1911,7 +1935,7 @@ msgstr "" "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "σας." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Διακομιστής" @@ -1967,7 +1991,7 @@ msgstr "Η MySQL επέστρεψε το μύνημα: " msgid "Failed to connect to SQL validator!" msgstr "Αδύνατη η σύνδεση στο διακομιστή MySQL" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Ανάλυση SQL" @@ -1979,11 +2003,11 @@ msgstr "Χωρίς ανάλυση SQL" msgid "Without PHP Code" msgstr "χωρίς κώδικα PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Ανανέωση" @@ -1992,7 +2016,7 @@ msgstr "Ανανέωση" msgid "Skip Validate SQL" msgstr "Παράβλεψη επικύρωσης SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Επικύρωση SQL" @@ -2091,7 +2115,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα. Δείτε %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2115,7 +2139,7 @@ msgid "Select from the web server upload directory %s:" msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" @@ -2123,7 +2147,7 @@ msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "δομή" @@ -2254,7 +2278,7 @@ msgid "Set value: %s" msgstr "Ορισμός τιμής: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Επαναφορά προεπιλεγμένης τιμής" @@ -2264,15 +2288,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Αποθήκευση" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Επαναφορά" @@ -2414,112 +2438,108 @@ msgid "Confirm DROP queries" msgstr "Επιβεβαίωση ερωτημάτων ΔΙΑΓΡΑΦΗΣ (DROP)" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Επιλογές προβολής βάσεων δεδομένων" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Προβαλόμενη καρτέλα κατά το άνοιγμα της βάσης δεδομένων" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Προεπιλεγμένη καρτέλα βάσης δεδομένων" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Προβαλόμενη καρτέλα κατά το άνοιγμα του διακομιστή" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Προεπιλεγμένη καρτέλα διακομιστή" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Προβαλόμενη καρτέλα κατά το άνοιγμα ενός πίνακα" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Προεπιλεγμένη καρτέλα πίνακα" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Εμφάνιση λίστας βάσεων δεδομένων ως λίστα και όχι ως αναδυόμενο μενού" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Προβολή βάσεων δεδομένων ως λίστα" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Εμφάνιση λίστας διακομιστών ως λίστα και όχι ως αναδυόμενο μενού" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Προβολή διακομιστών ως λίστα" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Επεξεργασία επόμενης γραμμής" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Λειτουργίες εμφάνισης" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Παράβλεψη σφαλμάτων" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Παράβλεψη σφαλμάτων" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2527,32 +2547,32 @@ msgstr "" "Ορίστε τον αριθμό των δευτερολέπτων που επιτρέπεται να εκτελεστεί κώδικας " "([kbd]0[/kbd] για εκτέλεση χωρίς όριο)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Μέγιστος χρόνος εκτέλεσης" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Αποστολή" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Σύνολο χαρακτήρων αρχείου" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Μορφοποίηση" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Συμπίεση" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2562,70 +2582,70 @@ msgstr "Συμπίεση" msgid "Put columns names in the first row" msgstr "Εμφάνιση ονομάτων πεδίων στην πρώτη γραμμή" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Πεδία που περικλείονται σε" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα διαφυγής " -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Αντικατάσταση τιμής NULL με" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Απομάκρυνση χαρακτήρων CRLF μέσα στα πεδία" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Γραμμές που τελειώνουν σε" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Γραμμές που τελειώνουν σε" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Έκδοση Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Πρότυπο ονόματος βάσης δεδομένων" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Πρότυπο ονόματος διακομιστή" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Πρότυπο ονόματος πίνακα" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2633,118 +2653,118 @@ msgstr "Πρότυπο ονόματος πίνακα" msgid "Dump table" msgstr "%s Πίνακας/Πίνακες" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Συμπερίληψη λεζάντας πίνακα" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Λεζάντα πίνακα" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Συνεχής λεζάντα πίνακα" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Κλειδί ετικέτας" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Τύπος MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Συσχετίσεις" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Τύπος εξαγωγής" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Αποθήκευση στο διακομιστή" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Αντικατάσταση υπαρχόντων αρχείων" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Πρότυπο απομνημόνευσης ονοματος αρχείου" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Χρήση ανάποδων εισαγωγικών στα ονόματα των Πινάκων και των Πεδίων" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Κατάσταση συμβατότητας SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Δημιουργία/Ενημέρωση/Έλεγχος ημερομηνιών" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Χρήση εισαγωγών με καθυστέρηση" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Απενεργοποίηση ελέγχων μη διακριτών κλειδιών" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Χρήση δεκαεξαδικού για τον BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Χρήση παραβλεφθέντων εισαγωγών" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Μέγιστο μήκος δημιουργηθέντος ερωτήματος" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Εξαγωγή πινάκων" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Συμπερίληψη εξαγωγής στη συναλλαγή" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy #| msgid "Export contents" msgid "Export time in UTC" msgstr "Εξαγωγή περιεχομένων" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Εξαναγκασμένη ασφαλής σύνδεση όσο χρησιμοποιείται το phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Εξαναγκασμένη σύνδεση SSL" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2753,192 +2773,192 @@ msgstr "" "(foreing key); [kbd]content[/kbd] είναι τα αναφερθέντα δεδομένα, [kbd]id[/" "kbd] είναι η τιμή κλειδιού" -#: libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Αναδυόμενη σειρά μη διακριτού κλειδιού" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "Μια αναδυόμενη λίστα θα χρησιμοποιηθεί, αν υπάρχουν λίγα αντικείμενα" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Όριο μη διακριτού κλειδιού" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Κατάσταση αναζήτησης" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Προσαρμοσμένη κατάσταση αναζήτησης" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Προσαρμογή προεπιλεγμένων επιλογών εξαγωγής" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Κατάσταση επεξεργασίας" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Προσαρμοσμένη κατάσταση επεξεργασίας" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Προεπιλογές εξαγωγής" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Προσαρμογή προεπιλεγμένων επιλογών εξαγωγής" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Χαρακτηριστικά" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Παραγωγή" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Εισαγωγή" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Προεπιλογές εισαγωγής" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Προσαρμογή προεπιλεγμένων επιλογών εισαγωγής" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Εισαγωγή / Εξαγωγή" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Ορισμός φακέλων εισαγωγής-εξαγωγής και επιλογές συμπίεσης" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "Έγγραφο LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Επιλογές προβολής βάσεων δεδομένων" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Πλαίσιο πλοήγησης" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Προσαρμογή εμφάνισης του πλαισίου πλοήγησης" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Διακομιστές" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Επιλογές προβολής διακομιστών" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Πίνακες" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Επιλογές προβολής πινάκων" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Βασικό πλαίσιο" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα (ODΤ)" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Άλλες ρυθμίσεις πυρήνα" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Ρυθμίσεις που δεν ανήκουν κάπου αλλού" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Σελίδα:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Παράθυρο ερωτήματος" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Προσαρμόστε επιλογές παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Ασφάλεια" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2946,27 +2966,27 @@ msgstr "" "Σημειώστε ότι το phpMyAdmin είναι απλά ένα περιβάλλον εργασίας και τα " "χαρακτηριστικά του δεν περιορίζουν τη MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Βασικές ρυθμίσεις" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Τύπος επικύρωσης" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Τύπος επικύρωσης" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Προσαρμογή διακομιστή" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -2974,16 +2994,16 @@ msgstr "" "Προχωρημένη ρύθμιση διακομιστή, μην αλλάξετε αυτές τις ρυθμίσεις εκτός και " "αν ξέρετε που παραπέμπουν" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Εισάγετε παραμέτρους σύνδεσης διακομιστή" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy msgid "Configuration storage" msgstr "Αρχείο ρυθμίσεων" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -2998,56 +3018,56 @@ msgstr "" "χαρακτηριστικά. Δείτε την [a@../Documentation.html#linked-tables]υποδομή " "συνδεδεμένων πινάκων[/a] στην τεκμηρίωση" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Προσαρμογή επιλογών εξαγωγής" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Προσαρμογή επιλογών εισαγωγής" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Προσαρμογή πλαισίου πλοήγησης" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Προσαρμογή βασικού πλαισίου" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Ερωτήματα SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "Χώρος Ερωτήματος SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Προσαρμογή εμφανιζόμενων συνδέσμων στους χώρους ερωτημάτων SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "Ερωτήματα SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Ιστορικό SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3055,49 +3075,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Εκκίνηση" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Προσαρμογή σελίδας εκκίνησης" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Καρτέλες" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Επιλέξτε πως θα λειτουργούν οι καρτέλες" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Προσαρμογή επιλογών εξαγωγής" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Κείμενο Texy!" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Προειδοποίηση" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3105,15 +3125,15 @@ msgstr "" "Ενεργοποιήστε τη συμπίεση [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] για " "τις λειτουργίες εισαγωγής και εξαγωγής" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Επιπλέον παράμετροι για την iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3121,11 +3141,11 @@ msgstr "" "Αν ενεργοποιηθεί, το phpMyAdmin συνεχίζει να υπολογίζει ερωτήματα πολλαπλών " "δηλώσεων ακόμα και αν ένα από τα ερωτήματα αποτύχει" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Παράβλεψη σφαλμάτων πολλαπλών δηλώσεων" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3136,21 +3156,21 @@ msgstr "" "την εισαγωγή μεγάλων αρχείων, αν και μπορεί να μπορεί να διακόψει τις " "διαδικασίες." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Μερική εισαγωγή: να επιτρέπεται η διακοπή" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Παράβλεψη διπλών γραμμών" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Αντικατάσταση δεδομένων Πίνακα με το αρχείο" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3158,97 +3178,97 @@ msgstr "" "Προεπιλεγμένη μορφή; να ληφθεί υπόψη ότι αυτή η λίστα εξαρτάται από την " "τοποθεσία (βάση δεδομένων, πίνακας) και ότι μόνο η SQL είναι πάντα διαθέσιμη" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Μορφή εισαχθέντος αρχείου" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Χρήση ΤΟΠΙΚΟΥ πληκτρολογίου" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Ονόματα στήλης στην πρώτη γραμμή" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Να μην γίνει εισαγωγή άδειων γραμμών" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, fuzzy msgid "Import currencies ($5.00 to 5.00)" msgstr "Εισαγωγή νομισμάτων (€5,00 αντί 5,00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (12.00% αντί .12)" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Αριθμός εγγραφών (ερωτημάτων) που θα παραβλεφθούν από την αρχή" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Μερική εισαγωγή: παράβλεψη ερωτημάτων" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Να μην γίνεται αυτόματη αρίθμηση σε μηδενικές τιμές" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Πόσες γραμμές μπορούν να εισαχθούν μονομιάς" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Αριθμός εισαχθέντων γραμμών" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Προορισμός για εικονίδιο γρήγορης πρόσβασης" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Προβολή λογοτύπου στο αριστερό πλαίσιο" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Προβολή λογοτύπου" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Προβολή επιλεγμένου διακομιστή επάνω στο αριστερό πλαίσιο" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Προβολή επιλογής διακομιστών" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Δενδροειδής προβολή βάσεων δεδομένων" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "Κείμενο που διαχωρίζει τις βάσεις δεδομένων σε διαφορετικά επίπεδα" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Διαχωριστικό δέντρου βάσης δεδομένων" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3256,40 +3276,40 @@ msgstr "" "Μόνο απλή έκδοση; δενδροειδής προβολή βάσεων δεδομένων (προσδορίζεται από το " "διαχωριστικό που ορίζεται παρακάτω)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Δενδροειδής προβολή βάσεων δεδομένων" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" "Απενεργοποιήστε το αν θέλετε να δείτε όλες τις βάσεις δεδομένων μονομιάς" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Χρήση απλής έκδοσης" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Μέγιστο βάθος δέντρου πίνακα" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Κείμενο που διαχωρίζει τους πίνακες σε διαφορετικά επίπεδα" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Διαχωριστικό δέντρου πινάκων" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Διεύθυνση URL συνδέσμου λογοτύπου" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3297,38 +3317,38 @@ msgstr "" "Ανοίγει τη συνδεδεμένη σελίδα στο κύριο παράθυρο ([kbd]main[/kbd]) ή σε νέο " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Προορισμός συνδέσμου λογοτύπου" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Επισήμανση διακομιστή με τον δείκτη του ποντικιού" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Ενεργοποίηση επισήμανσης" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Χρήση καρτελών με λιγότερα γραφικά" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Απλές καρτέλες" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, 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:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3340,11 +3360,11 @@ msgstr "" "να ξεχάσετε να αποσυνδεθείτε από άλλους διακομιστές όταν συνδέεστε σε " "πολλούς." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Διαγραφή όλων των cookies με την αποσύνδεση" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3352,11 +3372,11 @@ msgstr "" "Ορίζει αν η προηγούμενη σύνδεση πρέπει να επανακληθεί ή όχι σε κατάσταση " "επικύρωσης cookie" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Επανάκληση ονόματος χρήστη" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3368,54 +3388,54 @@ msgstr "" "για την τρέχουσα συνεδρία και θα διαγραφεί μόλις κλείσετε τον φυλλομετρητή. " "Αυτό προτείνεται για μη αξιόπιστα περιβάλλοντα." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Αποθήκευση cookie σύνδεσης" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Ορίστε χρονικά (σε δευτερόλεπτα) την ισχύ ενός cookie σύνδεσης" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Εγκυρότητα cookie σύνδεσης" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Μέγιστος αριθμός χαρακτήρων όταν προβάλεται ένα ερώτημα SQL" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Μέγιστο μήκος προβολής SQL" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Μέγιστος αριθμός βάσεων δεδομένων που προβάλονται στο αριστερό πλαίσιο και " "στη λίστα βάσεων δεδομένων" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Μέγιστος αριθμός βάσεων δεδομένων" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3425,29 +3445,29 @@ msgstr "" "αποτέλεσμα. Αν το αποτέλεσμα περιέχει περισσότερες γραμμές, θα εμφανίζονται " "σύνδεσμοι «Προηγούμενο» και «Επόμενο»." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Μέγιστος αριθμός γραμμών για προβολή" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Μέγιστος αριθμός πινάκες που θα προβάλονται σε λίστα πινάκων" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Μέγιστος αριθμός πινάκων" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3455,48 +3475,48 @@ msgstr "" "Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. [kbd]32M" "[/kbd] ([kbd]0[/kbd] για απεριόριστη)" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Όριο μνήμης" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Εμφάνιση/Απόκρυψη αριστερού μενού" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Αλλαγή ταξινόμησης Πίνακα κατά" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Χρήση μόνο εικονιδίων, μόνο κειμένου ή και τα δύο" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Γραμμή πλοήγησης με εικονίδια" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Χρήση εξαγόμενου GZip buffering για αυξημένη ταχύτητα σε μεταφορές HTTP" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "Εξαγόμενο GZip buffering" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3508,46 +3528,46 @@ msgstr "" "[kbd]SMART[/kbd] - π.χ. φθίνουσα ταξινόμηση για πεδία τύπου TIME, DATE, " "DATETIME και TIMESTAMP, αύξουσα ταξινόμηση στα υπόλοιπα" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Προεπιλεγμένη ταξινόμηση" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Χρήση εξαναγκασμένων συνδέσεων στις βάσεις δεδομένων MySQL" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Επιμένουσες συνδέσεις" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Λειτουργίες πίνακα με εικονίδια" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, 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:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Προστασία δυαδικών πεδίων" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3561,121 +3581,121 @@ msgstr "" "απενεργοποιηθεί, λειτουργούν ρουτίνες JS για προβολή του ιστορικού " "ερωτημάτων (χάνεται με το κλείσιμο του παραθύρου)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Μόνιμο ιστορικό ερωτημάτων" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Πόσα ερωτήματα παραμένουν στο ιστορικό" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Μέγεθος ιστορικού ερωτημάτων" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Προβολή καρτέλας με το άνοιγμα νέου παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Προεπιλεγμένη καρτέλα παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Παράθυρο ερωτήματος" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Παράθυρο ερωτήματος" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Παράθυρο ερωτήματος" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" "Επιλέξτε ποιες συναρτήσεις θα χρησιμοποιηθούν για μετατροπή συνόλων " "χαρακτήρων" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Μηχανή επανακωδικοποίησης" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Προσπάθειες επιδιόρθωσης" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Ο φάκελος στον διακομιστή όπου οι εξαγωγές μπορούν να αποθηκευτούν" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Φάκελος αποθήκευσης" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Αφήστε το άδειο αν δεν χρησιμοποιηθεί" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Σειρά επικύρωσης" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Αφήστε κενό για προεπιλογές" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Κανόνες επικύρωσης" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Δικαίωμα συνδέσεων χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Δικαίωμα ριζικής σύνδεσης" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3685,19 +3705,19 @@ msgstr "" "υλικού SweKey[/a] (δεν βρίσκεται στο ριζικό φάκελο του εγγράφου; " "προτείνεται: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "Αρχείο ρυθμίσεων SweKey" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Μέθοδος επικύρωσης για χρήση" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Τύπος επικύρωσης" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3705,11 +3725,11 @@ msgstr "" "Αφήστε κενό αν δεν υπάρχει [a@http://wiki.phpmyadmin.net/pma/bookmark]" "σελιδοδείκτης[/a] υποστήριξης, προτείνεται: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Πίνακας σελιδοδεικτών" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3717,32 +3737,32 @@ msgstr "" "Αφήστε κενό για να μη υπάρχουν σχόλια/τύποι mime στις στήλες. Προτείνεται: " "[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Πίνακας πληροφοριών στήλης" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Συνδεση συμπίεσης στο διακομιστή MySQL" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Σύνδεση συμπίεσης" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Πως να συνδεθείτε στο διακομιστή, κρατήστε το tcp αν δεν είστε σίγουρος/η" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Τύπος σύνδεσης" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Έλεγχος κωδικού πρόσβασης χρήστη" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3751,19 +3771,19 @@ msgstr "" "Περισσότερες πληροφορίες είναι διαθέσιμες στο [a@http://wiki.phpmyadmin.net/" "pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Έλεγχος χρήστη" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Απαρίθμηση πινάκων όταν εμφανίζεται η λίστα βάσεων δεδομένων" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Απαρίθμηση πινάκων" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3771,11 +3791,11 @@ msgstr "" "Αφήστε το κενό για καμία υποστήριξη Σχεδιαστή. Προτείνεται: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Πίνακας σχεδιαστή" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3784,28 +3804,28 @@ msgstr "" "aid=1849494]PMA bug tracker[/a] και στο [a@http://bugs.mysql.com/19588]MySQL " "Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Απενεργοποίηση χρήσης του INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Ποια επέκταση PHP να χρησιμοποιήσετε. Προτείνεται η mysqli αν υποστηρίζεται" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Επέκταση PHP για χρήση" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Απόκρυψη βάσεων δεδομένων που ταιριάζουν την κανονική έκφραση (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Απόκρυψη βάσεων δεδομένων" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3813,31 +3833,31 @@ msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "Πίνακας ιστορικού ερωτημάτων SQL" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Ονομασία θέσης όπου εκτελείται ο διακομιστής MySQL" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Ονομασία θέσης διακομιστή" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Διεύθυνση URL αποσύνδεσης" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Δοκιμάστε να συνδεθείτε χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Σύνδεση χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3853,30 +3873,30 @@ msgstr "" "κάθετο χρησιμοποιήστε τα ως κανονικούς χαρακτήρες, π.χ. χρησιμοποιήστε «my" "\\_db» και όχι «my_db»" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Εμφάνιση μόνο των βάσεων δεδομένων από λίστα" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Αφήστε το άδειο αν δεν χρησιμοποιείτε ρύθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Κωδικός πρόσβασης για ρυθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 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:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "Σχέδιο PDF: πίνακας σελίδων" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3887,22 +3907,22 @@ msgstr "" "a] για λεπτομέρειες. Αφήστε κενό για να μην υπάρχει υποστήριξη. Προτείνεται: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "όνομα βάσης δεδομένων" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Θύρα που αποκρίνεται ο διακομιστής MySQL. Αφήστε το άδειο για προεπιλογή" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Θύρα διακομιστή" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3910,19 +3930,19 @@ msgstr "" "Αφήστε το κενό για να μην υπάρχει υποστήριξη [a@http://wiki.phpmyadmin.net/" "pma/relation]σύνδεσμοι συσχετίσεων[/a]. Προτείνεται: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Πίνακας συσχετίσεων" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "Εντολή SQL που φέρνει τις διαθέσιμες βάσεις δεδομένων" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "Εντολή SHOW DATABASES" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3930,44 +3950,44 @@ msgstr "" "Δείτε τους [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]τύπους " "επικύρωσης[/a] για ένα παράδειγμα" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Ονομάσία συνεδρίας σύνδεσης" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Διεύθυνση URL σύνδεσης" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Η υποδοχή στην οποία ο διακομιστής MySQL αποκρίνεται. Αφήστε το κενό για " "προεπιλογή" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Υποδοχή διακομιστή" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Ενεργοποιήση SSL για σύνδεση στο διακομιστή MySQL" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Χρήση SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 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:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "Σχέδιο PDF: συντεταγμένες πίνακα" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -3979,52 +3999,52 @@ msgstr "" "Ο πίνακας που περιγράφει τα προβαλόμενα πεδία. Αφήστε το κενό για να μην " "υποστηρίζεται. Προτείνεται: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Πίνακας προβολής πεδίων" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy msgid "Statements to track" msgstr "Δηλώσεις" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" @@ -4033,23 +4053,23 @@ msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy msgid "SQL query tracking table" msgstr "Πίνακας ιστορικού ερωτημάτων SQL" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "Αυτόματη κατάσταση επαναφοράς" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4058,15 +4078,15 @@ msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Χρήστης για ρυθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4074,11 +4094,11 @@ msgstr "" "Απενεργοποιήστε το αν γνωρίζεται ότι οι πίνακες pma_* είναι ενημερωμένοι. " "Αυτό αποτρέπει ελέγχους συμβατότητας και αυξάνει την απόδοση" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Φιλοχρηστικός έλεγχος" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4086,22 +4106,22 @@ msgstr "" "Μια φιλοχρηστική περιγραφή αυτού του διακομιστή. Αφήστε το κενό για να " "εμφανίζεται το όνομα." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Φιλοχρηστικό όνομα διακομιστή" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether 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:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Δικαίωμα προβολή όλων των γραμμών" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4112,35 +4132,35 @@ msgstr "" "ρυθμίσεων. Αυτό δεν περιορίζει τη δυνατότητα άμεσης εκτέλεσης της ίδιας " "εντολής" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Εμφάνιση φόρμας αλλαγής κωδικού πρόσβασης" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Εμφάνιση φόρμας δημιουργίας βάσης δεδομένων" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Εμφάνιση ανοιχτών πινάκων" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Προβολή των πεδίων συναρτήσεων σε κατάσταση επεξεργασίας εισαγωγής" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Εμφάνιση πεδίων συναρτήσεων" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4148,35 +4168,35 @@ msgstr "" "Εμφανίζει σύνδεσμο για την τεκμηρίωση της συνάρτησης [a@http://php.net/" "manual/function.phpinfo.php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Εμφάνιση συνδέσμου phpinfo()" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Εμφάνιση λεπτομερών πληροφοριών διακομιστή MySQL" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Ορίζει αν τα δημιουργημένα ερωτήματα SQL από το phpMyAdmin πρέπει να " "προβάλονται" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Εμφάνιση ερωτημάτων SQL" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Δικαίωμα προβολής στατιστικών βάσης δεδομένων και πινάκων (π.χ. χρήση χώρου " "στο δίσκο)" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Εμφάνιση στατιστικών" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4184,11 +4204,11 @@ msgstr "" "Αν οι επεξηγήσεις είναι ενεργοποιημένες και έχει οριστεί σχόλιο για τη βάση " "δεδομένων, αυτή η επιλογή θα αντικαταστήσει το όνομα με το σχόλιο." -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Προβολή σχολίου βάσης δεδομένων αντί για το όνομα" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4200,61 +4220,61 @@ msgstr "" "$cfg['LeftFrameTableSeparator'], έτσι μόνο ο φάκελος καλείται όπως η " "ετικέτα, ενώ το όνομα του πίνακα δεν αλλάζει" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Προβολή σχολίου πίνακα αντί για το όνομά του" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Προβολή σχολίων πινάκων στις επεξηγήσεις" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Επισήμανση χρησιμοποιημένων πινάκων και ενεργοποίηση της δυνατότητας " "προβολής των βάσεων δεδομένων με κλειδωμένους πίνακες" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Παράβλεψη κλειδωμένων πινάκων" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Κωδικός Πρόσβασης" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Όνομα χρήστη" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4262,65 +4282,65 @@ msgstr "" "Προτείνεται ένα όνομα βάσης δεδομένων στη φόρμα «Δημιουργία Βάσης " "δεδομένων» (αν είναι δυνατό) ή διατήρηση του πεδίου άδειου" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Πρόταση νέου ονόματος βάσης δεδομένων" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "Στήλες περιοχής κειμένου (textarea) CHAR" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "Γραμμές περιοχής κειμένου (textarea) CHAR" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Προεπιλεγμένη καρτέλα πίνακα" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4332,38 +4352,38 @@ 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:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "Λίστα αξιόπιστων διευθύνσεων IP για να επιτρέπεται/απαγορεύεται" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" "Φάκελος στο διακομιστή όπου μπορείτε να αποστείλετε αρχεία για εισαγωγή" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Φάκελος αποστολής" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Επιτρέπει την αναζήτηση εντός ολόκληρης της βάσης δεδομένων" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Χρήση αναζήτησης βάσης δεδομένων" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4373,15 +4393,15 @@ msgstr "" "δηλώσεων. Δείτε στο libraries/import.lib.php τις προεπιλογές για το πόσες " "δηλώσεις μπορεί να περιέχει ένα ερώτημα." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Φιλοχρηστικές πολλαπλές δηλώσεις" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Έλεγχος για τελευταία έκδοση" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4389,7 +4409,7 @@ msgstr "" "Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]" "ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4418,74 +4438,74 @@ msgid "Signon authentication" msgstr "Σειρά επικύρωσης" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV με χρήση ΦΟΡΤΩΣΗΣ ΔΕΔΟΜΕΝΩΝ (LOAD DATA)" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Βιβλίο εργασίας Excel 97-2003 XLS" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Βιβλίο εργασίας Excel 2007 XLSX" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Έγγραφο Λογιστικού Φύλλου Ανοιχτού Κώδικα (ODS)" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Προσαρμοσμένο χρώμα" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Επιλογές εξαγωγής βάσης δεδομένων" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Δεδομένα" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "Μορφή CSV για δεδομένα MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Έγγραφο Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα (ODΤ)" @@ -4529,7 +4549,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Συμβάντα" @@ -4558,8 +4578,8 @@ msgid "Designer" msgstr "Σχεδιαστής" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Δικαιώματα" @@ -4571,7 +4591,7 @@ msgstr "Εργασίες" msgid "Return type" msgstr "Τύπος επιστροφής" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4600,18 +4620,18 @@ msgid "Details..." msgstr "Λεπτομέρειες..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Χωρίς Κωδικό Πρόσβασης" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Επαναεισαγωγή" @@ -4633,8 +4653,8 @@ msgstr "Δημιουργία νέας βάσης" msgid "Create" msgstr "Δημιουργία" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Χωρίς Δικαιώματα" @@ -4781,8 +4801,8 @@ msgid "Compression:" msgstr "Συμπίεση" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Καμία" @@ -4957,7 +4977,7 @@ msgstr "Ταξινόμηση ανά κλειδί" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4992,8 +5012,8 @@ msgstr "Εμφάνιση δυαδικών περιεχομένων" msgid "Show BLOB contents" msgstr "Εμφάνιση περιεχομένων BLOB" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Απόκρυψη" @@ -5011,49 +5031,49 @@ msgstr "Εκτέλεση αποθηκευμένου ερωτήματος" msgid "The row has been deleted" msgstr "Η Εγγραφή έχει διαγραφεί" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Τερματισμός" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "στην εντολή" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Εμφάνιση εγγραφής " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "συνολικά" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Αλλαγή" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Εμφάνιση σχήματος PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" @@ -5538,12 +5558,12 @@ msgid "Data dump options" msgstr "Επιλογές προβολής βάσεων δεδομένων" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Άδειασμα δεδομένων του πίνακα" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Δομή Πίνακα για τον Πίνακα" @@ -5600,9 +5620,9 @@ msgstr "Διαθέσιμοι τύποι MIME" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Σύστημα" @@ -5748,40 +5768,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Διαδικασίες" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Συναρτήσεις" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Περιορισμοί για άχρηστους πίνακες" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Περιορισμοί για πίνακα" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "ΤΥΠΟΙ MIME ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "ΣΥΣΧΕΤΙΣΕΙΣ ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Δείκτες" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Δομή για προβολή" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Στημένη δομή για προβολή" @@ -5816,43 +5836,43 @@ msgstr "αποτέλεσμα SQL" msgid "Generated by" msgstr "Δημιουργήθηκε από:" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Δείτε τα περιεχόμενα δομής πατώντας στο όνομα" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Επεξεργαστεί τη δομή από τον σύνδεσμο «Δομή»" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Μετάβαση στη βάση δεδομένων" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "ρυθμίσεις" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Μετάβαση στον πίνακα" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Μετάβαση στην προβολή" @@ -5904,7 +5924,7 @@ msgstr "Μη έγκυρο πλήθος πεδίων στο εισαχθέν CSV msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Ονομασία πίνακας" @@ -5990,7 +6010,7 @@ msgid "Charset" msgstr "Σύνολο χαρακτήρων" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Δυαδικό" @@ -6278,8 +6298,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Όνομα χρήστη" @@ -6298,7 +6318,7 @@ msgid "Variable" msgstr "Μεταβλητή" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Τιμή" @@ -6319,34 +6339,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Προσθήκη δευτερέοντα χρήστη αναπαραγωγής" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Οποιοσδήποτε Χρήστης" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Οποιοδήποτε Σύστημα" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Τοπικό" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Αυτός ο διακομιστής" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Χρήση Οικείου Πίνακα" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6601,11 +6621,11 @@ msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δε msgid "Columns" msgstr "Ονόματα στηλών" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" @@ -6637,7 +6657,7 @@ msgstr "Μόνο ανάγνωση" msgid "Location of the text file" msgstr "Τοποθεσία του αρχείου κειμένου" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή" @@ -6805,22 +6825,22 @@ msgstr "" "Δεν υπάρχει διαθέσιμη περιγραφή για αυτή τη μετατροπή.
Απευθύνθείτε " "στον δημιουργό της για να μάθετε τι κάνει η μετατροπή %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Μηχανή αποθήκευσης" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Προσθήκη στήλης(ών)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7080,8 +7100,8 @@ msgstr "ρυθμίσεις" msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Χρήστης" @@ -7118,7 +7138,7 @@ msgstr "Επίσημη σελίδα του phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7130,7 +7150,7 @@ msgstr "" "διακομιστής MySQL σας που τρέχει με αυτή τη ρύθμιση, είναι ανοιχτός σε " "επιθέσεις και θα πρέπει να διορθώσετε το πρόβλημα." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7140,7 +7160,7 @@ msgstr "" "επιλογή είναι ασύμβατη με το phpMyAdmin και ίσως προκαλέσει πρόβλημα με " "μερικά δεδομένα!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7151,7 +7171,7 @@ msgstr "" "μπορεί να χωρίσει συμβολοσειρές σωστά και ίσως προκύψουν μη αναμενόμενα " "αποτελέσματα." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7163,13 +7183,13 @@ msgstr "" "ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας αυτού, η σύνδεσή σας " "θα λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Το αρχείο ρυθμίσεων χρειάζεται τώρα μία μυστική φράση-κλειδί " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7179,7 +7199,7 @@ msgstr "" "εγκατάστασης, υπάρχει ακόμα στο φάκελο phpMyAdmin. Πρέπει να τον διαγράψετε " "μόλις ρυθμιστεί το phpMyAdmin." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7188,7 +7208,7 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7198,7 +7218,7 @@ msgstr "" "σας. Μερικές λειτουργίες του phpMyAdmin δεν θα υφίσταται. Για παράδειγμα το " "πλαίσιο πλοήγησης δεν θα ανανεώνεται αυτόματα." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7207,7 +7227,7 @@ msgstr "" "Η έκδοση της βιβλιοθήκης PHP MySQL (%s) διαφέρει από την έκδοση του " "διακομιστή MySQL (%s). Αυτό ίσως έχει μη προβλέψιμα αποτελέσματα." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7555,117 +7575,117 @@ msgstr "Μηχανές αποθήκευσης" msgid "View dump (schema) of databases" msgstr "Εμφάνισης σχήματος βάσεων" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Επιτρέπει τη δημιουργία νέων προβολών." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Επιτρέπει τη διαγραφή δεδομένων." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Επιτρέπει τη διαγραφή πινάκων." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους " "πίνακες δικαιωμάτων." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει " "ανά ώρα." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον " "διακομιστή ανά ώρα." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7673,63 +7693,63 @@ msgstr "" "Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να " "εκετελέσει ανά ώρα." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών " "αρχείων του." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι και δευτερεύοντες " "διακομιστές." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Επιτρέπει την ανάγνωση δεδομένων." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7739,158 +7759,158 @@ msgstr "" "καλυθφεί; Απαιτείται για τις περισσότερες λειτουργίες διαχείρισης όπως ο " "ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Επιτρέπει την αλλαγή δεδομένων." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Χωρίς δικαιώματα." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy msgctxt "None privileges" msgid "None" msgstr "Καμία" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Γενικά δικαιώματα" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Διαχείριση" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Όρια πόρων" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Πληροφορίες Σύνδεσης" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Διατήρηση κωδικού πρόσβασης" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Δεν βρέθηκαν χρήστες." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Ο χρήστης %s υπάρχει ήδη!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ανακαλέσατε τα δικαιώματα για %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Ο Κωδικός Πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Διαγραφή %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Επαναφόρτωση δικαιωμάτων" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Επεξεργασία Δικαιωμάτων" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Ανάκληση" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Οποιοδήποτε" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Περίληψη χρηστών" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Χορήγηση" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Προσθήκη νέου Χρήστη" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7904,50 +7924,50 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Δικαιώματα πεδίων" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να " "χρησιμοποιηθούν" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... διατήρηση του παλιού χρήστη." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7955,44 +7975,44 @@ msgstr "" " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση " "των δικαιωμάτων." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Βάση δεδομένων για χρήστη" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy msgctxt "Create none database for user" msgid "None" msgstr "Καμία" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "Γενικός" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Χρήστης Βάσης" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "μπαλαντέρ" @@ -9068,7 +9088,7 @@ msgstr "Αδύνατη η σύνδεση με την προέλευση" msgid "Could not connect to the target" msgstr "Αδύνατη η σύνδεση με τον προορισμό" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9594,12 +9614,12 @@ msgstr "Εμφάνιση ερωτήματος SQL" msgid "Validated SQL" msgstr "Επικύρωση SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Τίτλος" @@ -9608,16 +9628,16 @@ msgstr "Τίτλος" msgid "Table %1$s has been altered successfully" msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Έλεγχος" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " @@ -9625,59 +9645,59 @@ msgstr "" " Εξαιτίας του μεγέθος του,
αυτό το πεδίο ίσως να μη μπορεί να " "διορθωθεί " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Απομάκρυνση της Αναφοράς Αποθήκης BLOB" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Μεταφορά στην αποθήκη BLOB" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος SQL" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "και μετά" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Επιστροφή" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9788,12 +9808,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Ο πίνακας %s υπάρχει ήδη!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Ο πίνακας %1$s έχει δημιουργηθεί." @@ -10290,11 +10310,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Περιγραφή" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Δεν έχετε αρκετά δικαιώματα να είσαστε εδώ τώρα!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Τα στοιχεία ανανεώθηκαν." diff --git a/po/en_GB.po b/po/en_GB.po index 64c1372284..85799e3bbc 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" -"PO-Revision-Date: 2010-09-16 09:11+0200\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" +"PO-Revision-Date: 2010-10-04 13:11+0200\n" "Last-Translator: Robert Readman \n" "Language-Team: english-gb \n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Show all" @@ -38,17 +38,20 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Search" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Search" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Database comment: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Table comments" @@ -133,7 +136,7 @@ msgstr "Table comments" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -146,8 +149,8 @@ msgstr "Column" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -159,13 +162,13 @@ msgstr "Type" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -184,8 +187,8 @@ msgid "Links to" msgstr "Links to" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -201,10 +204,10 @@ msgstr "Comments" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "No" @@ -220,10 +223,10 @@ msgstr "No" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -250,7 +253,7 @@ msgstr "Select All" msgid "Unselect All" msgstr "Unselect All" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "The database name is empty!" @@ -264,77 +267,77 @@ msgstr "Database %s has been renamed to %s" msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Command" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Remove database" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Database %s has been dropped." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Drop the database (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data only" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -343,22 +346,22 @@ msgstr "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "Edit or export relational schema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Table" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -369,33 +372,33 @@ msgstr "Rows" msgid "Size" msgstr "Size" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "in use" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Creation" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Last update" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Last check" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -403,7 +406,7 @@ msgstr[0] "%s table" msgstr[1] "%s tables" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -433,7 +436,7 @@ msgid "Descending" msgstr "Descending" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Show" @@ -454,8 +457,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Or" @@ -523,17 +526,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match inside table %s" msgstr[1] "%s matches inside table %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Browse" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -575,69 +580,30 @@ msgstr "Inside table(s):" msgid "Inside column:" msgstr "Inside column:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Insert" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Structure" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Drop" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Empty" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Tracking is active." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Tracking is not active." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -646,87 +612,111 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "View" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replication" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Sum" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Check All" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Uncheck All" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Export" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Print view" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Empty" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Drop" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Check table" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimise table" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Repair table" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyse table" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -734,13 +724,13 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "Tracked tables" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -766,8 +756,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Action" @@ -810,12 +800,12 @@ msgstr "Track table" msgid "Database Log" msgstr "Database Log" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "Values for the column \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "Enter each value in a separate field." @@ -892,7 +882,7 @@ msgstr "The bookmark has been deleted." msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" @@ -919,7 +909,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Back" @@ -995,11 +985,11 @@ msgstr "The host name is empty!" msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" @@ -1080,100 +1070,106 @@ msgid "Searching" msgstr "Searching" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "Toggle Query Box Visibility" +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Hide query box" #: js/messages.php:85 +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Show query box" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "Inline Edit" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relation deleted" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Internal relation added" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Error: Relation not added." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Error: relation already exists." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Disabled" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Choose column to display" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "Generate password" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generate" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "Change Password" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "More" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Done" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "Prev" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1181,231 +1177,231 @@ msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "Today" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "January" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "February" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "March" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "April" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "May" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "June" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "July" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "August" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "September" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "October" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "November" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dec" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "Monday" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "Friday" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "Wk" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "Hour" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "Minute" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "Second" @@ -1482,9 +1478,9 @@ msgid "Comment" msgstr "Comment" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Edit" @@ -1507,15 +1503,15 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Databases" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -1759,6 +1755,32 @@ msgstr "Download file" msgid "Could not open file: %s" msgstr "Could not open file: %s" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Insert" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Structure" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "Query statistics" @@ -1822,7 +1844,7 @@ msgstr "Invalid server index: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1876,7 +1898,7 @@ msgstr "MySQL said: " msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Explain SQL" @@ -1888,11 +1910,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "Without PHP Code" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Create PHP Code" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Refresh" @@ -1901,7 +1923,7 @@ msgstr "Refresh" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validate SQL" @@ -1999,7 +2021,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2022,14 +2044,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "structure" @@ -2149,7 +2171,7 @@ msgid "Set value: %s" msgstr "Set value: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Restore default value" @@ -2159,15 +2181,15 @@ msgstr "Allow users to customise this value" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Save" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Reset" @@ -2303,18 +2325,14 @@ msgid "Confirm DROP queries" msgstr "Confirm DROP queries" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "Field navigation using Ctrl+Arrows" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "Debug SQL" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "Default display direction" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" @@ -2322,83 +2340,83 @@ msgstr "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "Display direction for altering/creating columns" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Tab that is displayed when entering a database" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Default database tab" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Tab that is displayed when entering a server" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Default server tab" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Tab that is displayed when entering a table" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Default table tab" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Show binary contents as HEX by default" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Show binary contents as HEX" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Show database listing as a list instead of a drop down" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Display databases as a list" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Display servers as a list" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "Edit SQL queries in popup window" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "Edit in window" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 msgid "Display errors" msgstr "Display errors" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "Gather errors" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "Show icons for warning, error and information messages" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "Iconic errors" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2406,32 +2424,32 @@ msgstr "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Maximum execution time" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Save as file" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Character set of the file" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compression" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2439,169 +2457,169 @@ msgstr "Compression" msgid "Put columns names in the first row" msgstr "Put columns names in the first row" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "Columns enclosed by" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "Columns escaped by" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "Remove CRLF characters within columns" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "Columns terminated by" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "Excel edition" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Database name template" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Server name template" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Table name template" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 msgid "Dump table" msgstr "Dump table" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Include table caption" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Table caption" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME type" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 msgid "Export method" msgstr "Export method" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Save on server" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Remember file name template" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "Enclose table and column names with backquotes" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "Syntax to use when inserting data" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Creation/Update/Check dates" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal for BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 msgid "Export type" msgstr "Export type" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "Export time in UTC" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Force secured connection while using phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Force SSL connection" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2609,160 +2627,160 @@ 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Foreign key dropdown order" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Foreign key limit" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Browse mode" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Customise browse mode" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "Customise default options" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "Developer" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "Settings for phpMyAdmin developers" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Edit mode" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Customise edit mode" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Export defaults" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Customise default export options" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Features" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 msgid "General" msgstr "General" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "Set some commonly used options" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Import defaults" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Customise default common import options" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Import / export" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Set import and export directories and compression options" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Databases display options" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigation frame" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Customise appearance of the navigation frame" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servers" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Servers display options" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tables" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Tables display options" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Main frame" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Other core settings" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Settings that didn't fit enywhere else" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 msgid "Page titles" msgstr "Page titles" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -2772,22 +2790,22 @@ msgstr "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Query window" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Customise query window options" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Security" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2795,23 +2813,23 @@ msgstr "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Basic settings" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 msgid "Authentication" msgstr "Authentication" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "Authentication settings" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Server configuration" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -2819,15 +2837,15 @@ msgstr "" "Advanced server configuration, do not change these options unless you know " "what they are for" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Enter server connection parameters" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "Configuration storage" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -2837,53 +2855,53 @@ msgstr "" "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "Changes tracking" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" "Tracking of changes made in database. Requires configured PMA database." -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Customise export options" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Customise import defaults" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Customise navigation frame" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Customise main frame" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL queries" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL Query box" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Customise links shown in SQL Query boxes" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "SQL queries settings" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 msgid "SQL Validator" msgstr "SQL Validator" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2895,43 +2913,43 @@ msgstr "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Startup" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Customise startup page" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Tabs" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Choose how you want tabs to work" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "Text fields" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "Customise text input fields" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "Warnings" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Disable some of the warnings shown by phpMyAdmin" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -2939,15 +2957,15 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Extra parameters for iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -2955,11 +2973,11 @@ msgstr "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignore multiple statement errors" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -2969,21 +2987,21 @@ msgstr "" "This might be good way to import large files, however it can break " "transactions." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Partial import: allow interrupt" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignore duplicate rows" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -2991,88 +3009,88 @@ msgstr "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Format of imported file" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Use LOCAL keyword" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Column names in first row" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Do not import empty rows" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "Import currencies (£5.00 to 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 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:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "Number of queries to skip from start" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Partial import: skip queries" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Do not use AUTO_INCREMENT for zero values" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "Initial state for sliders" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 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:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Number of inserted rows" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Target for quick access icon" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Show logo in left frame" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Display logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Display server choice at the top of the left frame" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Display servers selection" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 msgid "Display table filter" msgstr "Display table filter" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "String that separates databases into different tree levels" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Database tree separator" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3080,39 +3098,39 @@ msgstr "" "Only light version; display databases in a tree (determined by the separator " "defined below)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Display databases in a tree" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Disable this if you want to see all databases at once" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Use light version" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Maximum table tree depth" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "String that separates tables into different tree levels" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Table tree separator" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "URL where logo in the navigation frame will point to" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3120,37 +3138,37 @@ 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logo link target" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Highlight server under the mouse cursor" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Enable highlighting" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Use less graphically intense tabs" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Light tabs" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 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:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "Limit column characters" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3160,11 +3178,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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Delete all cookies on logout" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3172,11 +3190,11 @@ msgstr "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Recall user name" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3188,52 +3206,52 @@ 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:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Login cookie store" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Login cookie validity" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "Double size of textarea for LONGTEXT columns" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "Bigger textarea for LONGTEXT" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "Use icons on main page" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Maximum displayed SQL length" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "Users cannot set a higher value" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "Maximum number of databases displayed in left frame and database list" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Maximum databases" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3243,19 +3261,19 @@ msgstr "" "contains more rows, "Previous" and "Next" links will be " "shown." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Maximum number of rows to display" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Maximum tables" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -3263,11 +3281,11 @@ msgstr "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "mcrypt warning" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3275,43 +3293,43 @@ 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Memory limit" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "Show left delete link" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "Show right delete link" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 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:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "Natural order" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Use only icons, only text or both" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Iconic navigation bar" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 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:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip output buffering" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3319,19 +3337,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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Default sorting order" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Use persistent connections to MySQL databases" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Persistent connections" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3341,23 +3359,23 @@ msgstr "" "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Iconic table operations" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Disallow BLOB and BINARY columns from editing" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "Protect binary columns" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3367,108 +3385,108 @@ msgstr "" "storage). If disabled, this utilises JS-routines to display query history " "(lost by window close)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Permanent query history" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "How many queries are kept in history" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Query history length" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Tab displayed when opening a new query window" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Default query window tab" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "Query window height (in pixels)" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "Query window height" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "Query window width (in pixels)" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "Query window width" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 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:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Recoding engine" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 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:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "Repeat headers" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "Show help button instead of Documentation text" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "Show help button" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Directory where exports can be saved on server" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Save directory" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Leave blank if not used" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "Host authorisation order" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Leave blank for defaults" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "Host authorisation rules" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Allow logins without a password" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Allow root login" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 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:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3478,19 +3496,19 @@ msgstr "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "SweKey config file" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Authentication method to use" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Authentication type" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3498,11 +3516,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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Bookmark table" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3510,31 +3528,31 @@ msgstr "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Column information table" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Compress connection to MySQL server" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Compress connection" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 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:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Connection type" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Control user password" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3542,19 +3560,19 @@ 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Control user" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Count tables when showing database list" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Count tables" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3562,11 +3580,11 @@ msgstr "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Designer table" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3574,27 +3592,27 @@ msgstr "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Disable use of INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "What PHP extension to use; you should use mysqli if supported" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "PHP extension to use" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Hide databases matching regular expression (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Hide databases" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3602,31 +3620,31 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Hostname where MySQL server is running" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Server hostname" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Logout URL" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Try to connect without password" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Connect without password" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3640,29 +3658,29 @@ msgstr "" "their names in order and use [kbd]*[/kbd] at the end to show the rest in " "alphabetical order." -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Show only listed databases" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Leave empty if not using config auth" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Password for config auth" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 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:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF schema: pages table" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3672,19 +3690,19 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "Database name" msgstr "Database name" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Server port" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3692,19 +3710,19 @@ 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Relation table" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "SQL command to fetch available databases" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES command" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3712,41 +3730,41 @@ msgstr "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Signon session name" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Enable SSL for connection to MySQL server" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Use SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF schema: table coordinates" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3754,11 +3772,11 @@ msgstr "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "Display columns table" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -3766,11 +3784,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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "Add DROP DATABASE" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -3778,11 +3796,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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "Add DROP TABLE" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -3790,20 +3808,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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "Add DROP VIEW" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 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:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "Statements to track" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -3811,11 +3829,11 @@ msgstr "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "SQL query tracking table" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -3823,11 +3841,11 @@ msgstr "" "Whether the tracking mechanism creates versions for tables and views " "automatically." -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "Automatically create versions" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -3835,15 +3853,15 @@ msgstr "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "User preferences storage table" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "User for config auth" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -3851,11 +3869,11 @@ msgstr "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Verbose check" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -3863,20 +3881,20 @@ msgstr "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Verbose name of this server" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 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:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Allow to display all the rows" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -3886,15 +3904,15 @@ msgstr "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Show password change form" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Show create database form" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -3902,19 +3920,19 @@ msgstr "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "Show field types" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Display the function fields in edit/insert mode" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Show function fields" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -3922,32 +3940,32 @@ msgstr "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Show phpinfo() link" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Show detailed MySQL server information" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Show SQL queries" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Show statistics" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -3955,11 +3973,11 @@ msgstr "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Display database comment instead of its name" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3971,39 +3989,39 @@ msgstr "" "['LeftFrameTableSeparator'] directive, so only the folder is called like the " "alias, the table name itself stays unchanged" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Display table comment instead of its name" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Display table comments in tooltips" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 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:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Skip locked tables" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "Requires SQL Validator to be enabled" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Password" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4011,11 +4029,11 @@ msgstr "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "Enable SQL Validator" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4023,12 +4041,12 @@ msgstr "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Username" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4036,19 +4054,19 @@ msgstr "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Suggest new database name" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 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:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "Suhosin warning" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4056,11 +4074,11 @@ msgstr "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:474 msgid "Textarea columns" msgstr "Textarea columns" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4068,31 +4086,31 @@ msgstr "" "Textarea size (rows) in edit mode, this value will be emphasised for SQL " "query textareas (*2) and for query window (*1.25)" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "Textarea rows" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 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:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "Title of browser window when nothing is selected" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "Default title" msgstr "Default title" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 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:484 +#: libraries/config/messages.inc.php:483 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:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4104,27 +4122,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:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "List of trusted proxies for IP allow/deny" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Upload directory" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Allow for searching inside the entire database" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Use database search" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4132,11 +4150,11 @@ msgstr "" "When disabled, users cannot set any of the options below, regardless of the " "check-box on the right" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "Enable the Developer tab in settings" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4146,15 +4164,15 @@ msgstr "" "libraries/import.lib.php for defaults on how many queries a statement may " "contain." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Verbose multiple statements" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Check for latest version" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4162,7 +4180,7 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4183,72 +4201,72 @@ msgid "Signon authentication" msgstr "Signon authentication" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Quick" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Custom" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Database export options" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Data" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV for MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4287,7 +4305,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "The %s extension is missing. Please check your PHP configuration." #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Events" @@ -4316,8 +4334,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privileges" @@ -4329,7 +4347,7 @@ msgstr "Routines" msgid "Return type" msgstr "Return type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4360,18 +4378,18 @@ msgid "Details..." msgstr "Details..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Change password" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "No Password" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-type" @@ -4392,8 +4410,8 @@ msgstr "Create new database" msgid "Create" msgstr "Create" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "No Privileges" @@ -4510,8 +4528,8 @@ msgid "Compression:" msgstr "Compression:" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "None" @@ -4666,7 +4684,7 @@ msgstr "Sort by key" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4699,8 +4717,8 @@ msgstr "Show binary contents" msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Hide" @@ -4718,47 +4736,47 @@ msgstr "Execute bookmarked query" msgid "The row has been deleted" msgstr "The row has been deleted" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Change" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 msgid "Display chart" msgstr "Display chart" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Link not found" @@ -5223,12 +5241,12 @@ msgid "Data dump options" msgstr "Data dump options" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Dumping data for table" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Table structure for table" @@ -5271,9 +5289,9 @@ msgstr "Display MIME types" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -5435,40 +5453,40 @@ msgstr "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedures" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Functions" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Triggers" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Structure for view" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" @@ -5501,44 +5519,44 @@ msgstr "SQL result" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "The following structures have either been created or altered. Here you can:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "View a structure`s contents by clicking on its name" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Change any of its settings by clicking the corresponding \"Options\" link" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Edit its structure by following the \"Structure\" link" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Go to database" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "settings" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Go to table" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Go to view" @@ -5594,7 +5612,7 @@ msgstr "Invalid column count in CSV input on line %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Table name" @@ -5671,7 +5689,7 @@ msgid "Charset" msgstr "Charset" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binary" @@ -5959,8 +5977,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "User name" @@ -5979,7 +5997,7 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Value" @@ -6000,34 +6018,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Add slave replication user" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Any user" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Any host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6265,11 +6283,11 @@ msgstr "Run SQL query/queries on database %s" msgid "Columns" msgstr "Columns" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -6301,7 +6319,7 @@ msgstr "View only" msgid "Location of the text file" msgstr "Location of the text file" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "web server upload directory" @@ -6460,21 +6478,21 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "PARTITION definition" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "Add %s column(s)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "You have to add at least one column." @@ -6679,8 +6697,8 @@ msgstr "More settings" msgid "Protocol version" msgstr "Protocol version" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "User" @@ -6717,7 +6735,7 @@ msgstr "Official Homepage" msgid "Mailing lists" msgstr "Mailing lists" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6729,7 +6747,7 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole by setting a password for user 'root'." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6739,7 +6757,7 @@ msgstr "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6749,7 +6767,7 @@ msgstr "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6761,12 +6779,12 @@ msgstr "" "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6776,7 +6794,7 @@ msgstr "" "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6785,7 +6803,7 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6795,7 +6813,7 @@ msgstr "" "functionality will be missing. For example navigation frame will not refresh " "automatically." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6804,7 +6822,7 @@ msgstr "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behaviour." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7131,112 +7149,112 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7244,58 +7262,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7305,154 +7323,154 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "No privileges." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "None" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Global privileges" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Login Information" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Do not change the password" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "No user found." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "You have added a new user." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Deleting %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Edit Privileges" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Any" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Add a new User" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7465,92 +7483,92 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should %" "sreload the privileges%s before you continue." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Add privileges on the following database" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Add privileges on the following table" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... keep the old one." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... delete the old one from the user tables." +#: server_privileges.php:2101 +msgid "" +" ... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... revoke all active privileges from the old one and delete it afterwards." + #: server_privileges.php:2102 msgid "" -" ... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... revoke all active privileges from the old one and delete it afterwards." - -#: server_privileges.php:2103 -msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... delete the old one from the user tables and reload the privileges " "afterwards." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Database for user" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "None" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Create database with same name and grant all privileges" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Grant all privileges on database "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "database-specific" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "wildcard" @@ -8563,7 +8581,7 @@ msgstr "Could not connect to the source" msgid "Could not connect to the target" msgstr "Could not connect to the target" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8849,26 +8867,17 @@ msgid "No newer stable version is available" msgstr "No newer stable version is available" #: setup/lib/index.lib.php:250 -#, fuzzy, php-format -#| msgid "" -#| "This [a@?page=form&formset=features#tab_Security]option[/a] should be " -#| "disabled as it allows attackers to bruteforce login to any MySQL server. " -#| "If you feel this is necessary, use [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#, php-format msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " "proxies list%s. However, IP-based protection may not be reliable if your IP " "belongs to an ISP where thousands of users, including you, are connected to." msgstr "" -"This [a@?page=form&formset=features#tab_Security]option[/a] should be " -"disabled as it allows attackers to bruteforce login to any MySQL server. If " -"you feel this is necessary, use [a@?page=form&" -"formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -"protection may not be reliable if your IP belongs to an ISP where thousands " -"of users, including you, are connected to." +"This %soption%s should be disabled as it allows attackers to bruteforce " +"login to any MySQL server. If you feel this is necessary, use %strusted " +"proxies list%s. However, IP-based protection may not be reliable if your IP " +"belongs to an ISP where thousands of users, including you, are connected to." #: setup/lib/index.lib.php:252 msgid "" @@ -8881,18 +8890,13 @@ msgstr "" "you don't need to remember it." #: setup/lib/index.lib.php:253 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Bzip2 compression " -#| "and decompression[/a] requires functions (%s) which are unavailable on " -#| "this system." +#, php-format msgid "" "%sBzip2 compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Bzip2 compression and " -"decompression[/a] requires functions (%s) which are unavailable on this " -"system." +"%sBzip2 compression and decompression%s requires functions (%s) which are " +"unavailable on this system." #: setup/lib/index.lib.php:255 msgid "" @@ -8903,24 +8907,18 @@ msgstr "" "world accessible nor readable or writable by other users on your server." #: setup/lib/index.lib.php:256 -#, fuzzy, php-format -#| msgid "You should use SSL connections if your web server supports it" +#, php-format msgid "This %soption%s should be enabled if your web server supports it." -msgstr "You should use SSL connections if your web server supports it" +msgstr "This %soption%s should be enabled if your web server supports it." #: setup/lib/index.lib.php:258 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]GZip compression and " -#| "decompression[/a] requires functions (%s) which are unavailable on this " -#| "system." +#, php-format msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]GZip compression and " -"decompression[/a] requires functions (%s) which are unavailable on this " -"system." +"%sGZip compression and decompression%s requires functions (%s) which are " +"unavailable on this system." #: setup/lib/index.lib.php:260 #, php-format @@ -8929,20 +8927,18 @@ msgid "" "invalidation if %ssession.gc_maxlifetime%s is lower than its value " "(currently %d)." msgstr "" +"%sLogin cookie validity%s greater than 1440 seconds may cause random session " +"invalidation if %ssession.gc_maxlifetime%s is lower than its value " +"(currently %d)." #: setup/lib/index.lib.php:262 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] " -#| "should be set to 1800 seconds (30 minutes) at most. Values larger than " -#| "1800 may pose a security risk such as impersonation." +#, php-format msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" -"[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] should " -"be set to 1800 seconds (30 minutes) at most. Values larger than 1800 may " -"pose a security risk such as impersonation." +"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " +"most. Values larger than 1800 may pose a security risk such as impersonation." #: setup/lib/index.lib.php:264 #, php-format @@ -8950,38 +8946,24 @@ msgid "" "%sLogin cookie validity%s must be set to a value less or equal to %sLogin " "cookie store%s." msgstr "" +"%sLogin cookie validity%s must be set to a value less or equal to %sLogin " +"cookie store%s." #: setup/lib/index.lib.php:266 -#, fuzzy, php-format -#| msgid "" -#| "If you feel this is necessary, use additional protection settings - [a@?" -#| "page=servers&mode=edit&id=%1$d#tab_Server_config]host " -#| "authentication[/a] settings and [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#, 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." msgstr "" -"If you feel this is necessary, use additional protection settings - [a@?" -"page=servers&mode=edit&id=%1$d#tab_Server_config]host authentication" -"[/a] settings and [a@?page=form&formset=features#tab_Security]trusted " -"proxies list[/a]. 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." #: setup/lib/index.lib.php:268 -#, fuzzy, php-format -#| msgid "" -#| "You set the [kbd]config[/kbd] authentication type and included username " -#| "and password for auto-login, which is not a desirable option for live " -#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#, php-format msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -8992,60 +8974,46 @@ msgstr "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " "Anyone who knows or guesses your phpMyAdmin URL can directly access your " -"phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1$d#tab_Server]" -"authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/kbd]." +"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" +"http[/kbd]." #: setup/lib/index.lib.php:270 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] " -#| "requires functions (%s) which are unavailable on this system." +#, php-format msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] " -"requires functions (%s) which are unavailable on this system." +"%sZip compression%s requires functions (%s) which are unavailable on this " +"system." #: setup/lib/index.lib.php:272 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip decompression[/" -#| "a] requires functions (%s) which are unavailable on this system." +#, php-format msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Zip decompression[/a] " -"requires functions (%s) which are unavailable on this system." +"%sZip decompression%s requires functions (%s) which are unavailable on this " +"system." #: setup/lib/index.lib.php:296 -#, fuzzy -#| msgid "You should use SSL connections if your web server supports it" msgid "You should use SSL connections if your web server supports it." -msgstr "You should use SSL connections if your web server supports it" +msgstr "You should use SSL connections if your web server supports it." #: setup/lib/index.lib.php:306 -#, fuzzy -#| msgid "You should use mysqli for performance reasons" msgid "You should use mysqli for performance reasons." -msgstr "You should use mysqli for performance reasons" +msgstr "You should use mysqli for performance reasons." #: setup/lib/index.lib.php:331 msgid "You allow for connecting to the server without a password." msgstr "You allow for connecting to the server without a password." #: setup/lib/index.lib.php:351 -#, fuzzy -#| msgid "Key is too short, it should have at least 8 characters" msgid "Key is too short, it should have at least 8 characters." -msgstr "Key is too short, it should have at least 8 characters" +msgstr "Key is too short, it should have at least 8 characters." #: setup/lib/index.lib.php:358 -#, fuzzy -#| msgid "Key should contain letters, numbers [em]and[/em] special characters" msgid "Key should contain letters, numbers [em]and[/em] special characters." -msgstr "Key should contain letters, numbers [em]and[/em] special characters" +msgstr "Key should contain letters, numbers [em]and[/em] special characters." #: sql.php:569 tbl_replace.php:380 #, php-format @@ -9064,12 +9032,12 @@ msgstr "Showing SQL query" msgid "Validated SQL" msgstr "Validated SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Label" @@ -9078,70 +9046,70 @@ msgstr "Label" msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Browse foreign values" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Function" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr " Because of its length,
this column might not be editable " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Insert as new row" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Show insert query" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "and then" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Go back to previous page" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Insert another new row" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Go back to this page" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Edit next row" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "Continue insertion with %s rows" @@ -9244,12 +9212,12 @@ msgstr "" msgid "Redraw" msgstr "Redraw" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Table %1$s has been created." @@ -9727,11 +9695,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Description" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "You don't have sufficient privileges to be here right now!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "The profile has been updated." @@ -9743,6 +9711,12 @@ msgstr "VIEW name" msgid "Rename view to" msgstr "Rename view to" +#~ msgid "Field navigation using Ctrl+Arrows" +#~ msgstr "Field navigation using Ctrl+Arrows" + +#~ msgid "Toggle Query Box Visibility" +#~ msgstr "Toggle Query Box Visibility" + #~ msgid "SVG" #~ msgstr "SVG" diff --git a/po/es.po b/po/es.po index 1b118aef3c..f473d301b5 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 11:23+0200\n" "Last-Translator: Michal \n" "Language-Team: spanish \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Mostrar todo" @@ -38,17 +38,20 @@ msgstr "" "principal o su navegador está bloqueando las actualizaciones en ventanas " "múltiples debido a sus parámetros de seguridad." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Buscar" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Buscar" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "Comentario de la base de datos: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Comentarios de la tabla" @@ -135,7 +138,7 @@ msgstr "Comentarios de la tabla" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -150,8 +153,8 @@ msgstr "Nombre de las columnas" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -163,13 +166,13 @@ msgstr "Tipo" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nulo" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -188,8 +191,8 @@ msgid "Links to" msgstr "Enlaces a" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -205,10 +208,10 @@ msgstr "Comentarios" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "No" @@ -224,10 +227,10 @@ msgstr "No" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -254,7 +257,7 @@ msgstr "Seleccionar todo" msgid "Unselect All" msgstr "Deseleccionar todo" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "¡El nombre de la base de datos está vacío!" @@ -268,80 +271,80 @@ msgstr "La base de datos %s ha sido cambiada de nombre a %s" msgid "Database %s has been copied to %s" msgstr "La base de datos %s ha sido copiada a %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Cambiar el nombre de la base de datos a" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Comando" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Cambiar el nombre de la base de datos a" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "La base de datos %s ha sido eliminada." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "No hay bases de datos" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Copiar la base de datos a" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Únicamente la estructura " -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estructura y datos" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Solamente datos" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREAR BASE DE DATOS antes de copiar" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Añada %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Añadir restricciones" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Seleccionar la base de datos copiada" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Cotejamiento" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -353,24 +356,24 @@ msgstr "" "Las opciones adicionales para trabajar con tablas vinculadas fueron " "desactivadas. Para saber porqué, dé clic %saquí%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Esquema relacionado" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabla" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -381,33 +384,33 @@ msgstr "Filas" msgid "Size" msgstr "Tamaño" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "en uso" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Creación" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Última actualización" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Última revisión" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgstr[0] "%s tabla(s)" msgstr[1] "%s tabla(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "Descendente" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Mostrar" @@ -467,8 +470,8 @@ msgid "Del" msgstr "Borrar" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "O" @@ -541,17 +544,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado(s) en la tabla %s" msgstr[1] "%s resultado(s) en la tabla %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Examinar" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -596,69 +601,30 @@ msgstr "En la(s) tabla(s):" msgid "Inside column:" msgstr "Dentro del campo:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Insertar" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Estructura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Eliminar" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Vaciar" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Se ha vaciado la tabla %s" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Se descartó el modo de visualización %s" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Se ha eliminado la tabla %s" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -667,88 +633,112 @@ msgstr "" "Esta vista tiene al menos este número de filas. Por favor, refiérase a la %" "sdocumentation%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Visualizar" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replicación" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Número de filas" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s es el motor de almacenamiento predeterminado en este servidor MySQL." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Marcar todos/as" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Desmarcar todos" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exportar" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Vaciar" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Eliminar" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Revisar la tabla" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimizar la tabla" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Reparar la tabla" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizar la tabla" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Diccionario de datos" @@ -757,13 +747,13 @@ msgstr "Diccionario de datos" msgid "Tracked tables" msgstr "Saltarse las tablas bloqueadas" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -791,8 +781,8 @@ msgstr "Estado actual" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Acción" @@ -840,12 +830,12 @@ msgstr "Revisar la tabla" msgid "Database Log" msgstr "Base de datos" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -926,7 +916,7 @@ msgstr "El favorito ha sido borrado." msgid "Showing bookmark" msgstr "Mostrando el favorito" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" @@ -954,7 +944,7 @@ msgstr "" "importación a menos que usted incremente el tiempo de ejecución de php." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Volver" @@ -1036,11 +1026,11 @@ 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:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" @@ -1146,114 +1136,122 @@ msgid "Searching" msgstr "Buscar" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Ventana de consultas SQL" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Ventana de consultas SQL" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Motores" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "La relación fue eliminada" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Se añadió una relación FOREIGN KEY" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Se añadió la relación interna" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Error: no se añadió la relación." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Error: la relación ya existe." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Error guardando las coordenadas para el Diseñador." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Opciones de relación general" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Deshabilitado" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Seleccione la llave de referencia" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Seleccione la llave extranjera (foreign key)" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Por favor, seleccione la clave primaria o una clave única" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Elegir el campo a mostrar" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generar la contraseña" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generar" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Cambio de contraseña" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Lun" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Donación" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Previo" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1261,96 +1259,96 @@ msgid "Next" msgstr "Próxima" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binario " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "May" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Oct" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1358,178 +1356,178 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dic" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dom" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lun" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Vie" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lun" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mie" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Jue" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Vie" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "en uso" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1607,9 +1605,9 @@ msgid "Comment" msgstr "Comentario" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Editar" @@ -1632,15 +1630,15 @@ msgstr "" "Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede remover " "uno." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Bases de datos" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -1898,6 +1896,32 @@ msgstr "Descargar archivo" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Insertar" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Estructura" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1969,7 +1993,7 @@ msgstr "" "El nombre del host no es válido para el servidor %1$s. Por favor, revise su " "configuración." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Servidor" @@ -2025,7 +2049,7 @@ msgstr "MySQL ha dicho: " msgid "Failed to connect to SQL validator!" msgstr "No pudo conectarse con un servidor MySQL" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Explicar el SQL" @@ -2037,11 +2061,11 @@ msgstr "Salir de la explicación del SQL" msgid "Without PHP Code" msgstr "Sin código PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Actualizar" @@ -2050,7 +2074,7 @@ msgstr "Actualizar" msgid "Skip Validate SQL" msgstr "Salir de la validación del SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validar el SQL" @@ -2150,7 +2174,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2174,7 +2198,7 @@ msgid "Select from the web server upload directory %s:" msgstr "directorio en el servidor web para subir los archivos" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" "No está disponible el directorio que usted habilitó para subir las tareas" @@ -2182,7 +2206,7 @@ msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Estructura" @@ -2314,7 +2338,7 @@ msgid "Set value: %s" msgstr "Fijar el valor: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Restaurar los valores predeterminados" @@ -2324,15 +2348,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Grabar" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Reiniciar" @@ -2471,142 +2495,138 @@ msgid "Confirm DROP queries" msgstr "Confirmar las consultas DROP" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Opciones para visualizar las bases de datos" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Ceja que se muestra cuando ingresa una base de datos" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Ceja predeterminada de la base de datos" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Ceja que se muestra cuando ingresa un servidor" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Ceja predeterminada para el servidor" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Ceja que se muestra cuando ingresa una tabla" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Ceja predeterminada de la tabla" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 #, fuzzy msgid "Show database listing as a list instead of a drop down" msgstr "Muestra los servidores en una lista en lugar de un drop down" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Mostrar las bases de datos como una lista" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Muestra los servidores en una lista en lugar de un drop down" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Muestra los servidores en una lista" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Editar la siguiente fila" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Mostrar las opciones" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Ignorar los errores" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Ignorar los errores" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Tiempo máximo de ejecución" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Enviar (genera un archivo descargable)" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Juego de caracteres del archivo" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compresión" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2616,68 +2636,68 @@ msgstr "Compresión" msgid "Put columns names in the first row" msgstr "Poner los nombres de campo en la primera hilera" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Campos encerrados por" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Caracter de escape" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Reemplazar NULL con" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Líneas terminadas en" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Líneas terminadas en" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edición Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Nombre de la plantilla de la base de datos" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Nombre de la plantilla del servidor" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Nombre de la plantilla de la tabla" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2685,116 +2705,116 @@ msgstr "Nombre de la plantilla de la tabla" msgid "Dump table" msgstr "%s tabla(s)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Incluir el subtitulado de la tabla" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Subtitulado de la tabla" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Continuación del subtitulado de la tabla" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Clave de la etiqueta" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relaciones" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Tipo de exportación" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Guardar en el servidor" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Sobreescribir el(los) archivo(s) existente(s)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Recordar el nombre de la plantilla del archivo" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Usar \"backquotes\" con tablas y nombres de campo" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Modalidad compatible con SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Fechas de creación/actualización/revisión" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Usar \"inserts\" con retraso" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Deshabilitar la revisión de las llaves extranjeras (foreign keys)" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal para BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Usar la opción ignore inserts" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Longitud máxima de la consulta creada" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Tipo de exportación" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Incluir lo exportado en una transacción" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Exportar las opciones predeterminadas" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Forzar conexión segura mientras usa phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Forzar la conexión SSL" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2803,196 +2823,196 @@ msgstr "" "extranjeras; [kbd]content[/kbd] son los datos referidos, [kbd]id[/kbd] es el " "valor clave" -#: libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Orden de despliegue de las llaves extranjeras" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Límite de las llaves extranjeras" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Modalidad de navegación" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Cambiar las opciones de la modalidad de visualización" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Personalizar las opciones comunes de exportación predeteminadas" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Modalidad de edición" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Cambiar las opciones de la modalidad de edición" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Exportar las opciones predeterminadas" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Personalizar las opciones comunes de exportación predeteminadas" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Hallazgos" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generar" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importar" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Importar las opciones predeterminadas" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Personalizar las opciones comunes de importación predeteminadas" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Importar / exportar" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 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:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Opciones para visualizar las bases de datos" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Página con los elementos de navegación" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" "Cambiar la apariencia predefinida de la página que contiene los elementos de " "navegación" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servidores" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Opciones para visualizar los servidores" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tablas" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Opciones para visualizar las tablas" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Página principal" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Texto Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Otros parámetros cruciales" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Parámetros que no encajaban en otra parte" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Número de página:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Ventana de consulta" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Personalizar las opciones de la ventana de consulta" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Seguridad" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3000,27 +3020,27 @@ msgstr "" "Por favor tome en cuenta que phpMyAdmin es solamente una interfaz y sus " "opciones no limitan a MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Ajustes básicos" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Configuración del servidor" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3028,17 +3048,17 @@ msgstr "" "Configuración avanzada del servidor, no cambie estas opciones a menos que " "usted conozca como funcionan" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Escriba los ajustes básicos del servidor" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Archivo de configuración" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3053,56 +3073,56 @@ msgstr "" "adicionales, mire [a@../Documentation.html#linked-tables]linked-tables " "infrastructure[/a] en la documentación" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Personalizar las opciones para la exportación" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Personalizar los parámetros de importación predeterminados" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Personalizar el marco de navegación" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Personalizar el marco principal" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Consultas SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "Ventana de consultas SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Cambiar los enlaces mostrados en las ventanas de consulta SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "Consultas SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Historial-SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3110,49 +3130,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Inicio" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Cambiar las opciones de la página de arranque" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Tabulaciones" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Seleccione como quiere que funcionen las tabulaciones" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Use el campo de texto" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Personalizar las opciones para la exportación" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texto Texy!" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Advertencia" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3160,15 +3180,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:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Parámetros adicionales para iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3176,11 +3196,11 @@ msgstr "" "De estar activado, phpMyAdmin continúa computando consultas con múltiples " "enunciados incluso si falló una de las consultas" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignore errores múltiples en los enunciados" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3190,21 +3210,21 @@ 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:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Importación parcial: permitir interrupciones" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignore las filas duplicadas" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Reemplazar los datos de la tabla con los del archivo" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3212,97 +3232,97 @@ 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Formato del archivo importado" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Use la palabra clave LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Poner los nombres de campo en la primera hilera" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Número de registros (consultas) a saltarse desde el inicio" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Importación parcial: saltarse las consultas" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Añadir el valor AUTO_INCREMENT" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Cuántas filas se pueden insertar de una sola" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Número de filas insertadas" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Mostrar el logo en la columna izquierda" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Mostrar el logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Mostrar la selección de servidores" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Mostrar las bases de datos en un árbol" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Nombre de la plantilla de la base de datos" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3310,75 +3330,75 @@ msgstr "" "Solamente la versión clara; mostrar las bases de datos en un árbol " "(determinado por el separador definido abajo)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Mostrar las bases de datos en un árbol" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Deshabilite esto si quiere ver todas las bases de datos a la vez" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Use la versión clara" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 #, fuzzy msgid "Table tree separator" msgstr "Nombre de la plantilla de la base de datos" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logo enlace URL" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logo enlace objetivo" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Permitir destacar" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Use cejas con menor intensidad gráfica" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Cejas claras" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3389,11 +3409,11 @@ msgstr "" "Colocar este parámetro en FALSE hace fácil olvidar que debe hacer log out de " "otros servidores cuando se conecta a múltiples servidores." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Eliminar todas las cookies al salir" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3401,11 +3421,11 @@ msgstr "" "Define si el login anterior se debe recordar o no en la modalidad " "autenticación mediante cookie" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Recordar el nombre del usuario" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3417,54 +3437,54 @@ msgstr "" "borrará tan pronto cierre la ventana del navegador. Esto es recomendable " "para entornos no confiables." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Almacenamiento de cookies de Login" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Define cuánto dura (en segundos) un cookie de login, como válido" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Validez del cookie usado para el Login" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Número máximo de bases de datos visibles en la columna izquierda y en el " "listado de bases de datos" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Número máximo de bases de datos" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3474,240 +3494,240 @@ msgstr "" "juego de resultados contiene más filas, aparecerán enlaces "" "Anterior" y "Siguiente"." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Máximo número de filas a mostrar" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 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:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Número máximo de tablas" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Límite de la memoria" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Ocultar/mostrar menú izquierdo" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Modificar el ORDER BY de la tabla" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Use solamente íconos, solamente texto o ambos" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Barra de navegación mediante íconos" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Orden de despliegue predeterminado" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Use conexiones persistentes para las bases de datos MySQL" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Conexiones persistentes" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Operaciones de las tablas mediante íconos" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Proteger los campos binarios" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Bitácora permanente de consultas" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Cuántas consultas se guardan en la bitácora" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Longitud de la bitácora de consultas" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "La ceja se muestra cuando abre una nueva ventana de consulta" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Ceja predetermnada para la ventana de consulta" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Ventana de consulta" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Ventana de consulta" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Ventana de consulta" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" "Seleccione cuáles funciones se usarán para la conversión del juego de " "caracteres" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Motor de recodificación" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Reparar los procesos" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 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:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Directorio de almacenamiento" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Deje en blanco si no necesita usarlo" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Orden en que se autentica el Host" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Deje en blanco para usar los valores predeterminados" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Reglas de autenticación del Host" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Permitir el login como root" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3717,19 +3737,19 @@ msgstr "" "dispositivo SweKey[/a] (no localizado en su carpeta de documentos; sugiere: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "Archivo de configuración SweKey" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Método de autenticación a usar" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3737,42 +3757,42 @@ msgstr "" "Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/bookmark]" "bookmark[/a], de manera predeterminada: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Haga un bookmark a la tabla" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Tabla con información de la columna" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Conexión de compresión con el servidor SQL" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Conexión de compresión" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Cómo conectar con el servidor, mantenga el tcp en caso de no estar seguro" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Tipo de conexión" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Controlar la contraseña del usuario" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3780,29 +3800,29 @@ 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Controlar al usuario" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Contar las tablas cuando muestra el listado de las bases de datos" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Contar las tablas" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Tabla del diseñador" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3810,60 +3830,60 @@ msgstr "" "Más información en [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] y [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Deshabilitar el uso de INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Cuál extensión PHP debe usar; usted debe usar mysqli si su sistema lo permite" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "extensión PHP para usar" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 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:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Ocultar las bases de datos" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Descripción del servidor" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Nombre del servidor" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "URL de logout" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Intente conectar sin contraseña" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Conecte sin contraseña" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3879,28 +3899,28 @@ msgstr "" "escape si desea usar sus instancias literales, i.e. use 'my\\_db' y no " "'my_db'" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Muestre solamente las bases de datos listadas" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Deje vacío si no está usando config auth" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Contraseña para config auth" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3911,23 +3931,23 @@ msgstr "" "completa. Deje en blanco para que no exita soporte. Predeterminado: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nombre de la base de datos" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Puerto del servidor" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3935,19 +3955,19 @@ msgstr "" "Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/relation]" "relation-links[/a], de manera predeterminada: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Tabla de relaciones" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "Comando SQL para llamar las bases de datos disponibles" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "Comando SHOW DATABASES" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3955,43 +3975,43 @@ 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:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Nombre de la sesión al signon" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "URL de signon" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Puerto del servidor" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "Conexión de compresión con el servidor SQL" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Use SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -4003,53 +4023,53 @@ msgstr "" "Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/relation]" "relation-links[/a], de manera predeterminada: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Mostrar la tabla con los campos" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Enunciado" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -4061,23 +4081,23 @@ msgstr "" "Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/relation]" "relation-links[/a], de manera predeterminada: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Modalidad de recuperación automática" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" @@ -4089,15 +4109,15 @@ msgstr "" "Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/relation]" "relation-links[/a], de manera predeterminada: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Usuario para config auth" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4105,21 +4125,21 @@ msgstr "" "Deshabilite si conoce que sus tablas pma_* se encuentran actualizadas. Esto " "previene chequeos de compatibilidad e incrementa por tanto el rendimiento" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Revisión detallada" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 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:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Nombre del servidor, forma extendida" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4127,87 +4147,87 @@ 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)"" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Permitir que se muestren todas las filas" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Mostrar el formulario para cambio de contraseña" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Mostrar el formulario para crear una base de datos" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Mostrar las tablas que están abiertas" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Mostrar los campos de elección" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Mostrar el enlace phpinfo()" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Mostrar información detallada acerca del servidor SQL" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Mostrar las consultas SQL" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Mostrar estadísticas" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Display database comment instead of its name" msgstr "Mostrar el comentario de la tabla en lugar de su nombre" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4215,124 +4235,124 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Mostrar el comentario de la tabla en lugar de su nombre" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Mostrar los comentarios de las tablas en los tooltips" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Saltarse las tablas bloqueadas" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Contraseña" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Usuario:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Sugerir un nuevo nombre para la base de datos" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "Columnas para las áreas de texto CHAR" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "Filas para las áreas de texto CHAR" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Ceja predeterminada de la tabla" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4340,52 +4360,52 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 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:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Directorio desde donde se cargarán los archivos" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 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:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Use búsquedas en la base de datos" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Opción verbosa para múltiples enunciados" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Buscar si existe una versión más reciente" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4393,7 +4413,7 @@ 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4422,74 +4442,74 @@ msgid "Signon authentication" msgstr "Orden en que se autentica el Host" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Hoja de cálculo Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Cambiar el color" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opciones de exportación de la base de datos" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Datos" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV para datos de MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Texto Open Document" @@ -4535,7 +4555,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Eventos" @@ -4564,8 +4584,8 @@ msgid "Designer" msgstr "Diseñador" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegios" @@ -4577,7 +4597,7 @@ msgstr "Rutinas" msgid "Return type" msgstr "Muestre el tipo" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4609,18 +4629,18 @@ msgid "Details..." msgstr "Detalles..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Cambio de contraseña" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Sin contraseña" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Debe volver a escribir" @@ -4643,8 +4663,8 @@ msgstr "Crear nueva base de datos" msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Sin privilegios" @@ -4791,8 +4811,8 @@ msgid "Compression:" msgstr "Compresión" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Ninguna" @@ -4967,7 +4987,7 @@ msgstr "Organizar según la clave" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5002,8 +5022,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Ocultar" @@ -5021,49 +5041,49 @@ msgstr "Ejecute la consulta marcada previamente" msgid "The row has been deleted" msgstr "La fila se ha borrado" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Matar el proceso" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "en la consulta" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Mostrando registros " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Cambiar" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Previsualización para imprimir (documento completo)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar esquema PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "No se encontró el enlace" @@ -5552,12 +5572,12 @@ msgid "Data dump options" msgstr "Opciones para visualizar las bases de datos" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Volcar la base de datos para la tabla" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Estructura de tabla para la tabla" @@ -5614,9 +5634,9 @@ msgstr "MIME-types disponibles" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Servidor" @@ -5763,40 +5783,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedimientos" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funciones" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Filtros para las tablas descargadas (dump)" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Filtros para la tabla" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA LA TABLA" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELACIONES PARA LA TABLA" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "(Evento) desencadenante" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Estructura para la vista" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Estructura Stand-in para la vista" @@ -5832,44 +5852,44 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Generado por" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha devuelto un valor vacío (i.e., cero columnas)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "No hay bases de datos" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "No hay bases de datos" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5921,7 +5941,7 @@ msgstr "El número de campos de los datos CSV en la línea %d no es válido." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nombre de la tabla" @@ -6000,7 +6020,7 @@ msgid "Charset" msgstr "Juego de caracteres" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Binario " @@ -6287,8 +6307,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Nombre de usuario" @@ -6309,7 +6329,7 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Valor" @@ -6328,34 +6348,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Cualquier usuario" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Use el campo de texto" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Cualquier servidor" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Este Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Usar la tabla Anfitrión (Host)" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6612,11 +6632,11 @@ msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s" msgid "Columns" msgstr "Nombre de las columnas" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" @@ -6648,7 +6668,7 @@ msgstr "Solamente ver" msgid "Location of the text file" msgstr "Localización del archivo de texto" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "directorio en el servidor web para subir los archivos" @@ -6819,22 +6839,22 @@ msgstr "" "No hay una descripción disponible para esta transformación.
Por favor " "pregunte al autor lo que %s hace." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Motor de almacenamiento" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "definición de la PARTICIÓN" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Añadir %s campo(s)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7091,8 +7111,8 @@ msgstr "Otros parámetros cruciales" msgid "Protocol version" msgstr "Versión del protocolo" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Usuario" @@ -7129,7 +7149,7 @@ msgstr "Página oficial de phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7144,7 +7164,7 @@ msgstr "" "contraseña a root@localhost. Deberá escribir la misma contraseña en config." "inc.php de phpMyAdmin" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7154,7 +7174,7 @@ msgstr "" "opción es incompatible con phpMyAdmin y podría causar la pérdida de algunos " "datos!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7164,7 +7184,7 @@ msgstr "" "tipografía multibyte. phpMyAdmin no puede cortar correctamente las cadenas " "de caracteres sin la extensión mbstring y podría dar resultados inesperados." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7172,20 +7192,20 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "El archivo de configuración ahora necesita salvoconducto (una frase secreta) " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7194,14 +7214,14 @@ msgstr "" "Las opciones adicionales para trabajar con tablas vinculadas fueron " "desactivadas. Para saber porqué, dé clic %saquí%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7210,7 +7230,7 @@ msgstr "" "Su versión de librería PHP MySQL %s es distinta de aquella de su versión de " "servidor MySQL %s. Esto puede ocasionar un comportamiento impredecible." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7563,116 +7583,116 @@ msgstr "Motores de almacenamiento" msgid "View dump (schema) of databases" msgstr "Ver el volcado (schema) de la base de datos" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Incluye todos los privilegios excepto GRANT (CONCEDER)." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar la estructura de las tablas existentes." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar y eliminar las rutinas almacenadas." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permite crear nuevas bases de datos y tablas." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permite crear el almacenamiento de rutinas." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permite la creación de tablas nuevas." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permite la creación de tablas temporales." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permite crear nuevas vistas." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permite borrar datos." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos y tablas." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permite eliminar tablas." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permite organizar los eventos para el gestor de eventos" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permite ejecutar las rutinas almacenadas." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar y exportar datos de y hacia archivos." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite añadir usuarios y privilegios sin conectarse nuevamente a la tabla " "de privilegios." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permite crear y eliminar índices." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permite insertar y reemplazar datos." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permite poner candados a las tablas para el proceso actual." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita el número de conexiones nuevas que el usuario puede abrir por hora." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el número de consultas que el usuario puede enviar al servidor por " "hora." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7680,63 +7700,63 @@ msgstr "" "Limita el número de comandos que cambian cualquier tabla o base de datos que " "el usuario puede ejecutar por hora." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permite ver los procesos de todos los usuarios" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "No tiene efecto en esta versión de MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite volver a cargar los parámetros del servidor y depurar los cachés del " "servidor." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da el derecho al usuario para preguntar dónde están los \"esclavos / masters" "\"." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Necesario para los \"esclavos\" de replicación." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permite leer los datos." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Concede acceso a la lista completa de bases de datos." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" "Permite llevar a cabo las consultas SHOW CREATE VIEW (MOSTRAR CREAR VER)." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permite desconectar el servidor." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7747,162 +7767,162 @@ msgstr "" "tales como montar parámetros de variables globales o matar procesos de otros " "usuarios." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permite crear y eliminar un evento desencadenante" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permite cambiar los datos." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Sin privilegios." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ninguna" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Nota: Los nombres de los privilegios de MySQL están expresados en inglés " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Privilegios globales" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administración" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Límites de recursos" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el " "límite." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Información de la cuenta" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "No cambiar la contraseña" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Usuario(s) no encontrado(s)." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "¡El usuario %s ya existe!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Ha actualizado los privilegios para %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ha revocado los privilegios para %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "La contraseña para %s se cambió exitosamente." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Borrando %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "¡No se han seleccionado usuarios para eliminar!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Cargando los privilegios nuevamente" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Los usuarios seleccionados fueron borrados exitosamente." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Editar los privilegios" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Revocar" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "cualquiera" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Vista global de usuarios" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Agregar un nuevo usuario" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Eliminar a los usuarios seleccionados" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocar todos los privilegios activos de los usuarios y borrarlos después." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" "Eliminar las bases de datos que tienen los mismos nombres que los usuarios." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7916,50 +7936,50 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "El usuario que seleccionó no se halló en la tabla de privilegios." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Privilegios específicos para la columna" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Añadir privilegios a esta base de datos" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Los comodines _ y % deben acompañarse de \\ para usarlos de manera literal" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Añadir privilegios a esta tabla" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Cambiar la información de la cuenta / Copiar el usuario" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Crear un nuevo usuario con los mismos privilegios y..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "...mantener el anterior." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ...borrar el viejo de las tablas de usuario." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ...revocar todos los privilegios activos del viejo y eliminarlo después." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7967,46 +7987,46 @@ msgstr "" " ...borrar el viejo de las tablas de usuario y luego volver a cargar los " "privilegios." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Base de datos para el usuario" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ninguna" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" "Crear base de datos con el mismo nombre y otorgue todos los privilegios" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Otorgue todos los privilegios al nombre que contiene comodín (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Revisar los privilegios para la base de datos "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios con acceso a "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "específico para la base de datos" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "comodín" @@ -9045,7 +9065,7 @@ msgstr "No pudo conectarse con un servidor MySQL" msgid "Could not connect to the target" msgstr "No pudo conectarse con un servidor MySQL" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9567,12 +9587,12 @@ msgstr "Mostrando la consulta SQL" msgid "Validated SQL" msgstr "Validar el SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etiqueta" @@ -9581,74 +9601,74 @@ msgstr "Etiqueta" msgid "Table %1$s has been altered successfully" msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Mostrar los valores extranjeros" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Función" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Debido a su longitud,
este campo podría no ser editable " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Remueva la referencia al repositorio BLOB" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Binario - ¡no editar! " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Cargar al repositorio BLOB" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Mostrando la consulta SQL" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "y luego" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Volver" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Volver a esta página" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse " "a cualquier parte" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9759,12 +9779,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "¡La tabla %s ya existe!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "La Tabla %1$s se creó." @@ -10266,11 +10286,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Descripción" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "¡Usted no tiene suficientes privilegios para estar aquí ahora!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Se actualizó el perfil." diff --git a/po/et.po b/po/et.po index 643feb092b..f48bcbaff4 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Näita kõiki" @@ -37,17 +37,20 @@ msgstr "" "sulgenud või Teie sirvija ei luba akendevahelist suhtlist tänu " "turvaseadetele." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Otsi" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "Otsi" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -121,7 +124,7 @@ msgid "Database comment: " msgstr "Andmebaasi kommentaar: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Tabeli kommentaarid" @@ -132,7 +135,7 @@ msgstr "Tabeli kommentaarid" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -147,8 +150,8 @@ msgstr "Väljade nimed" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -160,13 +163,13 @@ msgstr "Tüüp" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -185,8 +188,8 @@ msgid "Links to" msgstr "Lingib " #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -202,10 +205,10 @@ msgstr "Kommentaarid" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ei" @@ -221,10 +224,10 @@ msgstr "Ei" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -251,7 +254,7 @@ msgstr "Märgista kõik" msgid "Unselect All" msgstr "Puhasta kõik" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Andmebaasi nimi on tühi!" @@ -265,80 +268,80 @@ msgstr "Andmebaas %s on ümber nimetatud %s" msgid "Database %s has been copied to %s" msgstr "Andmebaas %s on kopeeritud %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Nimeta andmebaas ümber" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Käsk" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Nimeta andmebaas ümber" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Andmebaas %s kustutatud." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Pole andmebaase" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopeeri andmebaas" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Ainult struktuur" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktuur ja andmed" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Ainult andmed" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE enne kopeerimist" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Lisa %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Lisa piirangud" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Mine kopeeritud andmebaasile" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Määrang" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -350,24 +353,24 @@ msgstr "" "Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda " "miks see nii on, vajutage %ssiia%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Seoseskeem" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -378,33 +381,33 @@ msgstr "Ridu" msgid "Size" msgstr "Suurus" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "kasutusel" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Loodud" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Viimane muudatus" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Viimane vaatamine" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -413,7 +416,7 @@ msgstr[0] "%s tabel(it)" msgstr[1] "%s tabel(it)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -443,7 +446,7 @@ msgid "Descending" msgstr "Kahanev" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Näita" @@ -464,8 +467,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "või" @@ -538,17 +541,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s vaste(t) tabelis %s" msgstr[1] "%s vaste(t) tabelis %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Vaata" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -593,156 +598,141 @@ msgstr "Otsi tabeli(te)st:" msgid "Inside column:" msgstr "Otsi tabeli(te)st:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Lisa" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktuur" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Kustuta" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Tühjenda" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s tühjendatud" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Vaade %s on kustutatud" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s kustutatud" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Vaade" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Tiražeerimine" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Summa" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Valitud:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Märgista kõik" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Puhasta kõik" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Kontrolli ülekulusid" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Ekspordi" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Trükivaade" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Tühjenda" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Kustuta" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Kontrolli tabelit" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimiseeri tabelit" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Paranda tabelit" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analüüsi tabelit" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Andmesõnastik" @@ -751,13 +741,13 @@ msgstr "Andmesõnastik" msgid "Tracked tables" msgstr "Kontrolli tabelit" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -785,8 +775,8 @@ msgstr "Staatus" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Tegevus" @@ -834,12 +824,12 @@ msgstr "Kontrolli tabelit" msgid "Database Log" msgstr "Andmebaas" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -917,7 +907,7 @@ msgstr "Järjehodja kustutati." msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Järjehoidja %s loodud" @@ -945,7 +935,7 @@ msgstr "" "pikenda." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Tagasi" @@ -1025,11 +1015,11 @@ msgstr "Masin on tühi!" msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Paroolid ei ühti!" @@ -1134,113 +1124,119 @@ msgid "Searching" msgstr "Otsi" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL-päring" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL-päring" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Mootor" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Muutused salvestatud" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Suhe kustutatud" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Sisemine suhe loodud" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Peamised seoste võimalused" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Keelatud" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Vali eelistus võti (referenced key)" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Vali võõrvõti(Foreign Key)" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Palun vali primaarne või unkaalne võti" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vali väli mida kuvada" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genereeri" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Muuda parooli" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Esm" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "Andmed" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Eelmine" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1248,96 +1244,96 @@ msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kokku" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binaarne" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mär" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Veb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mär" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1345,176 +1341,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Det" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Püh" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Esm" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Tei" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ree" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Püh" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Esm" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Tei" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Kol" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Nel" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ree" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lau" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "kasutusel" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1590,9 +1586,9 @@ msgid "Comment" msgstr "Kommentaarid" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Muuda" @@ -1613,15 +1609,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Andmebaasid" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Viga" @@ -1867,6 +1863,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Lisa" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktuur" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1935,7 +1957,7 @@ msgstr "Vigane serveri indeks: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Vigane hostname serverile %1$s. Palun kontrolli seadeid." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1991,7 +2013,7 @@ msgstr "MySQL ütles: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Seleta SQL-i" @@ -2003,11 +2025,11 @@ msgstr "Jäta SQL-i seletamine vahele" msgid "Without PHP Code" msgstr "ilma PHP koodita" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Loo PHP kood" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Uuenda" @@ -2016,7 +2038,7 @@ msgstr "Uuenda" msgid "Skip Validate SQL" msgstr "Jäta SQL-i kontroll vahele" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Kontrolli SQL-i" @@ -2116,7 +2138,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2140,14 +2162,14 @@ msgid "Select from the web server upload directory %s:" msgstr "webiserveri üleslaadimiskataloogi" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Struktuur" @@ -2277,7 +2299,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2287,15 +2309,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Salvesta" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Tühista" @@ -2417,140 +2439,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Nimeta andmebaas ümber" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Nimeta andmebaas ümber" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Nimeta andmebaas ümber" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Muuda järgmist rida" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Kuva võimalused" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Salvesta failina" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Faili tähetabel:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formaat" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Pakkimine" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2560,71 +2578,71 @@ msgstr "Pakkimine" msgid "Put columns names in the first row" msgstr "Pange väljade nimed esimesse ritta" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Väljad ümbritsetud" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Väljad varjatud" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Asenda NULL " -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Read lõpetatud" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Read lõpetatud" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Exceli versioon" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Faili nime template" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Faili nime template" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Faili nime template" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2632,412 +2650,412 @@ msgstr "Faili nime template" msgid "Dump table" msgstr "%s tabel(it)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Lisa tabeli seletus" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Tabeli seletus" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Jätkuva tabeli seletus" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Nimetuse võti" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-tüüp" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Suhted" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Ekspordi tüüp" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Kirjuta olemasolev(ad) fail(id) üle" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Faili nime template" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Kasutage tagurpidi kaldkriipse tabelites või tabelinimedes" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL ühilduvus viis" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Loo/muuda/kontrolli kuupäevi" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Kasuta ajastatud lisamisi" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Keela võõrvõtmete (foreign key) kontroll" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Kasutaja ignoreeritavaid lisamisi" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Loodud päringu maksimaalne pikkus" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Ekspordi tüüp" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Lisa eksport ülekandesse" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Ekspordi tüüp" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "Importige failid" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Genereeri" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Importige failid" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Serverid" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabelid" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 #, fuzzy msgid "Tables display options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Ava dokumendi tekst" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Lehenumber:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentatsioon" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Tiražeerimine" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL-päring" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL-päring" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL-päring" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-ajalugu" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3045,72 +3063,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Staatus" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tabel" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Kasutage tekstivälja" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3121,213 +3139,213 @@ msgstr "" "See võib olla hea viis suurte failide importimisel, kuigi võib katkestada " "ülekanded." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignoreeri korduvaid ridasid" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Asenda tabeli andmed failiga" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Imporditud faili formaat" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "kasuta LOCAL võtmesõna" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Pange väljade nimed esimesse ritta" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Käske (päringuid) mida algusest vahele jätta" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Lisa AUTO_INCREMENT väärtus" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "Sorteritud ridade arv." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Näitan veeru kommentaare" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Faili nime template" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "MySQL kliendi versioon" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3335,435 +3353,435 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "Pole andmebaase" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Ressursilimiidid" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Näita/Peida vasak menüü" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Muuda tabeli sorteeringut" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Paranda lõimud" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Andmete kodukataloog" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Ühendused" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Pole tabeleid" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Defrgamenteeri tabel" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "PHP versioon" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Pole andmebaase" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "serveri nimi" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3772,302 +3790,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "andmebaasi nimi" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Serveri ID" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Paranda tabelit" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Serveri valik" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Näitan veeru kommentaare" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Parameerid" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automaatne taastamine" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Näita avatud tabeleid" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Näita täispikkasid päringuid" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Rea statistika" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4075,122 +4093,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Näita avatud tabeleid" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Parool" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Kasutajanimi:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Lisa/Kustuta välja veerud" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "Nimeta andmebaas ümber" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4198,59 +4216,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "Andmete kodukataloog" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4271,72 +4289,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV kasutades LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Ava dokumendi arvutustabel" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Andmebaasi eksportimise seaded" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Andmed" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV MS Exceli jaoks" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Ava dokumendi tekst" @@ -4375,7 +4393,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 #, fuzzy msgid "Events" msgstr "Saadetud" @@ -4405,8 +4423,8 @@ msgid "Designer" msgstr "Kujundaja" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privileegid" @@ -4418,7 +4436,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4447,18 +4465,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Muuda parooli" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Ilma paroolita" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Sisesta uuesti" @@ -4481,8 +4499,8 @@ msgstr "Loo uus andmebaas" msgid "Create" msgstr "Loo" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Ei oma ühtegi privileegi" @@ -4626,8 +4644,8 @@ msgid "Compression:" msgstr "Pakkimine" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Pole" @@ -4798,7 +4816,7 @@ msgstr "Sorteeri võtme järgi" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4835,8 +4853,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Peida" @@ -4854,49 +4872,49 @@ msgstr "Käivita salvestatud päring" msgid "The row has been deleted" msgstr "Rida kustutatud" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Tapa" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "päringus" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Näita ridu" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "kokku" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Päring kestis %01.4f sek" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Muuda" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Trükivaade (täispikkade tekstidega)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Näita PDF skeemi" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Linki ei leitud" @@ -5337,12 +5355,12 @@ msgid "Data dump options" msgstr "Andmebaasi eksportimise seaded" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Tabeli andmete salvestamine" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktuur tabelile" @@ -5399,9 +5417,9 @@ msgstr "Olemasolevad MIME-tüübid" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Masin" @@ -5547,40 +5565,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Toimingud" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funktsioonid" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Piirangud salvestatud tabelitele" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Piirangud tabelile" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TÜÜBID TABELILE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "SEOSED TABELILE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Vaate (view) struktuur" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Sise-vaate struktuur" @@ -5616,44 +5634,44 @@ msgstr "SQL tulemus" msgid "Generated by" msgstr "Genereerija " -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t. null rida)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Pole andmebaase" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "Pole andmebaase" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5705,7 +5723,7 @@ msgstr "Vigane väljade arv CSV sisendis real %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabeli nimi" @@ -5784,7 +5802,7 @@ msgid "Charset" msgstr "Tähetabel" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binaarne" @@ -6068,8 +6086,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Kasutajanimi" @@ -6090,7 +6108,7 @@ msgid "Variable" msgstr "Muutuja" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Väärtus" @@ -6109,34 +6127,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Kõik kasutajad" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Kasutage tekstivälja" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Kõik masinad" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokaalne" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Antud host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Kasuta host tabelit" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6392,11 +6410,11 @@ msgstr "Päri SQL päring(uid) andmebaasist %s" msgid "Columns" msgstr "Väljade nimed" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale" @@ -6428,7 +6446,7 @@ msgstr "Vaata ainult" msgid "Location of the text file" msgstr "tekstifaili asukoht" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "webiserveri üleslaadimiskataloogi" @@ -6597,22 +6615,22 @@ msgstr "" "Selle transformatsiooni jaoks ei ole kirjeldust.
Palun küsige autorilt, " "mida %s teeb." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Varundusmootor" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Lisa %s väli(jad)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6863,8 +6881,8 @@ msgstr "Peamised seoste võimalused" msgid "Protocol version" msgstr "Protokolli versioon" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Kasutaja" @@ -6902,7 +6920,7 @@ msgstr "Ametlik phpMyAdmini koduleht" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6914,7 +6932,7 @@ msgstr "" "server jookseb sellise seadega on ta avatud rünnakutele, soovitav on see " "turvaauk kiiresti parandada." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6923,7 +6941,7 @@ msgstr "" "Te olete lubanud mbstring.func_overload oma PHP konfiguratsioonis. See seade " "ei ühildu phpMyAdminiga ja võib osade andmete kadumist põhjustada!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6933,7 +6951,7 @@ msgstr "" "tähetabelit. Ilma mbstring lisata ei suuda phpMyAdmin poolitada teksti " "korrektselt ja tulemus võib olla ootustele mittevastav." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6941,18 +6959,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguratsioonifail nõuab nüüd salajast võtmesõna (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6961,21 +6979,21 @@ msgstr "" "Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda " "miks see nii on, vajutage %ssiia%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7310,113 +7328,113 @@ msgstr "Varundusmootorid" msgid "View dump (schema) of databases" msgstr "Näita andmebaaside sisu (skeemi)" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Sisaldab kõiki privileege peale GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Lubab muuta olemasolevate tabelite struktuure." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Lubabu salvestatud rutiinide muutmise ja kustutamise." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Lubab luua uusi andmebaase ja tabeleid." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Lubab salvestatud rutiinide loomise." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Lubab luua uusi tabeleid." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Lubab luua ajutisi tabeleid." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Lubab kasutajakontode loomise, kustutamise ja muutmise." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Lubab uute vaadete loomist." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Lubab kustutada infot." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Lubab kustuada andmebaase ja tabeleid." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Lubab kustutada tabeleid.." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Lubab salvestatud rutiinide käivituse." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Lubab andmete eksportimist faili ja andmete importimist failidest." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lubab lisada kasutajaid ja privileege ilma privileges tabelit " "taaskäivitamata." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Lubab luua ja kustutada indekseid." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Lubab lisada ja muuta infot." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Lubab lukustada tabeleid aktiivse päringu tarbeks." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limiteerib ühenduste arvu tunnis kasutaja jaoks." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limiteerib päringute arvu tunnis kasutaja jaoks." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7424,58 +7442,58 @@ msgstr "" "Limiteerib käskude, mis muudavad suvalist tabelit või andmebaasi, arvu " "tunnis kasutaja jaoks" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Piirab ühenduste arvu mida kasutajal võib korraga olla." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Ei oma antud MySQL versioonis mingit effekti." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Lubab taaslaadida serveri seadmeid ja puhastada serveri cachet." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Lubab kasutajal küsida kus on slaved/masterid." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Vajalik slavede paljundamiseks." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Lubab lugeda infot." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Annab ligipääsu kogu andmebaasilistingule." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Lubab SHOW CREATE VIEW päringute käivitamise." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Lubab serverit maha lasta." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7485,159 +7503,159 @@ msgstr "" "enamike administratiivsete operatsioonide jaoks, nagu globaalsete muutujate " "seadmine või teiste kasutajate ühenduste tapmine." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lubab luua ja kustutada indekseid." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Lubab muuta infot." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Mitte ühtegi privileegi." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Pole" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Tabel-spetsiifilised privileegid" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Märkus: MySQL privileegide nimed on ingliskeelsed " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globaalsed privileegid" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Andmebaas-spetsiifilised privileegid" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administreerimine" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ressursilimiidid" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Märkus: Märkides antud seaded 0 (null), eemaldate limiidi." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Logimise informatsioon" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Ärge muutke parooli" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ei leitud ühtegi kasutajat." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Kasutaja %s on juba olemas!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Te lisasite uue kasutaja." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Te uuendasite privileege %s-l." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Te võtsite tagasi privileegid %s-lt" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Kasutaja %s parool vahetati õnnestunult." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Kustutan %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ühtegi kasutajat pole valitud kustutamiseks!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Taaslaen privileege" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Valitud kasutajad on õnnestunult kustutatud." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Privileegid taaslaeti edukalt." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Muuda privileege" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Võta tagasi" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "kõik" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Kasutaja ülevaade" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Õigused" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Lisa uus kasutaja" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Eemalda valitud kasutajad" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Eemalda kõik aktiivsed privileegid kasutajatelt ning kustuta nad pärast seda." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7650,95 +7668,95 @@ msgstr "" "juhul kui olete käsitsi muudatusi teinud. Sellisel juhul peaksite te " "privileegid %staaslaadima%s enne jätkamist." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat ei leitud privileegide tabelist." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Väli-spetsiifilised privileegid" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Lisa privileegid antud andmebaasile" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Metamärgid _ ja % peaksid olema varjestatud märgiga \\, kui soovite neid " "sisestada" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Lisa privileegid antud tabelile" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Vaheta logimisinformatsiooni / Kopeeri kasutaja" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Loo uus kasutaja samade privileegidega ja ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... hoia vana alles." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... kustuta vana kasutajate tabelist." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... kanna kõik aktiivsed privileegid üle vanast ja kustuta see pärast." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... kustuta vana kasutajate tabelist ja taaslae privileegid pärast seda." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Andmebaas kasutajale" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Pole" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Loo sama nimega andmebaas ja anna kõik õigused" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Anna kõik õigused Metanimele (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrolli privileege andmebaasile "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Kasutajad kellel on ligipääs "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globaalne" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "andmebaasipõhine" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "metamärk" @@ -8737,7 +8755,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9150,12 +9168,12 @@ msgstr "Näitan SQL päringut" msgid "Validated SQL" msgstr "Kontrolli SQL-i" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid tabeli `%s` indeksitega" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Nimetus" @@ -9164,74 +9182,74 @@ msgstr "Nimetus" msgid "Table %1$s has been altered successfully" msgstr "Valitud kasutajad on õnnestunult kustutatud." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Vaata väliseid väärtuseid" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funktsioon" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Oma suuruse tõttu
võib see väli olla mittemuudetav " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binaarne - ärge muutke" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Lisa uue reana" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Näitan SQL päringut" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "ja siis" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Kasutage TAB klahvi, et liikuda ühelt väärtuselt teisele või CTRL+nool, et " "liikuda noole suunas" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9339,12 +9357,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "tabel %s on juba olemas!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabel %s kustutatud" @@ -9840,11 +9858,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Kirjeldus" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Teil pole piisavalt õigusi, et hetkel siin olla!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profiil uuendatud." diff --git a/po/eu.po b/po/eu.po index 0006a948cc..428b0e174f 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Dena erakutsi" @@ -38,17 +38,20 @@ msgstr "" "parent window or your browser is blocking cross-window updates of your " "security settings" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Bilatu" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Bilatu" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Datu-basearen iruzkina: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Taularen iruzkinak" @@ -133,7 +136,7 @@ msgstr "Taularen iruzkinak" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -148,8 +151,8 @@ msgstr "Zutabe izenak" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "Mota" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nulua" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "Estekak honi:" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "Iruzkinak" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ez" @@ -222,10 +225,10 @@ msgstr "Ez" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "Dena hautatu" msgid "Unselect All" msgstr "Desautatu dena" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 #, fuzzy msgid "The database name is empty!" msgstr "Taularen izena hutsik dago!" @@ -267,82 +270,82 @@ msgstr "%s taula %s-(e)ra berrizendatua izan da" msgid "Database %s has been copied to %s" msgstr "%s taula hona kopiatua izan da: %s." -#: db_operations.php:365 +#: db_operations.php:366 #, fuzzy msgid "Rename database to" msgstr "Taula berrizendatu izen honetara: " -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Komandoa" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy msgid "Remove database" msgstr "Taula berrizendatu izen honetara: " -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "%s datu-basea ezabatua izan da." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Datu-baserik ez" -#: db_operations.php:442 +#: db_operations.php:445 #, fuzzy msgid "Copy database to" msgstr "Datu-baserik ez" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Egitura soilik" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Egitura eta datuak" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Datuak soilik" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s gehitu" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Murrizketak gehitu" -#: db_operations.php:483 +#: db_operations.php:486 #, fuzzy msgid "Switch to copied database" msgstr "Kopiatutako taulara aldatu" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Ordenamendua" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,24 +357,24 @@ msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Erlazio-eskema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Taula" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -382,33 +385,33 @@ msgstr "Errenkadak" msgid "Size" msgstr "Tamaina" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "lanean" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Sortzea" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Azken eguneraketa" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Azken egiaztapena" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -417,7 +420,7 @@ msgstr[0] "%s taula(k)" msgstr[1] "%s taula(k)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -447,7 +450,7 @@ msgid "Descending" msgstr "Beherantz" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Erakutsi" @@ -468,8 +471,8 @@ msgid "Del" msgstr "Ezabatu" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Edo" @@ -542,17 +545,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s emaitza(k) %s taulan" msgstr[1] "%s emaitza(k) %s taulan" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Arakatu" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -597,157 +602,142 @@ msgstr "Taul(ar)en barnean:" msgid "Inside column:" msgstr "Taul(ar)en barnean:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Txertatu" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Egitura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Ezabatu" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Hutsik" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "%s taula hustu egin da" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s eremua ezabatu da" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "%s taula ezabatu egin da" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 #, fuzzy msgid "Replication" msgstr "Erlazioak" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Gehiketa" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Ikurdunak:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Guztiak egiaztatu" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Desautatu dena" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Esportatu" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Hutsik" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Ezabatu" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Taula egiaztatu" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Taula optimizatu" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Taula konpondu" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Taula aztertu" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Datu-hiztegia" @@ -755,13 +745,13 @@ msgstr "Datu-hiztegia" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -788,8 +778,8 @@ msgstr "Egoera" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Ekintza" @@ -836,12 +826,12 @@ msgstr "Taula egiaztatu" msgid "Database Log" msgstr "Datu-basea" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -912,7 +902,7 @@ msgstr "Gordetako kontsulta ezabatu da." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -935,7 +925,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Itzuli" @@ -1016,11 +1006,11 @@ msgstr "Zerbitzariaren izena hutsik dago!" msgid "The user name is empty!" msgstr "Erabiltzailearen izena hutsik dago!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Pasahitza hutsik dago!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" @@ -1121,115 +1111,121 @@ msgid "Searching" msgstr "Bilatu" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL kontsulta" #: js/messages.php:85 +#, fuzzy +msgid "Show query box" +msgstr "SQL kontsulta" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Erlazioen ikuspegia" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Barne-erlazioak" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Ezgaituta" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Aukeratu erakutsi beharreko eremua" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Egilea:" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Pasahitza aldatu" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Astel" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Batez" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Aurrekoa" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1237,96 +1233,96 @@ msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binarioa " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1334,176 +1330,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Abe" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1578,9 +1574,9 @@ msgid "Comment" msgstr "Iruzkinak" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Editatu" @@ -1601,15 +1597,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Datu-baseak" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Errorea" @@ -1849,6 +1845,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Txertatu" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Egitura" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1916,7 +1938,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Zerbitzaria" @@ -1970,7 +1992,7 @@ msgstr "MySQL-ek zera dio: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL-a azaldu" @@ -1982,11 +2004,11 @@ msgstr "SQL-ren azalpena saltatu" msgid "Without PHP Code" msgstr "PHP Koderik gabe" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP kodea sortu" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1995,7 +2017,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "SQL-ren balidapena saltatu" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL balidatu" @@ -2093,7 +2115,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2117,14 +2139,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Egitura" @@ -2255,7 +2277,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2265,15 +2287,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Gorde" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Reset egin" @@ -2395,137 +2417,133 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Editatu hurrengo lerroa" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Eginbideak erakutsi" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Bidali" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formatoa" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Trinkotzea" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2535,71 +2553,71 @@ msgstr "Trinkotzea" msgid "Put columns names in the first row" msgstr "Eremuen izenak lehenengo errenkadan jarri" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Eremuak honekin mugatuta:" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Eremuak escaped by:" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "NULL ordezkatu honen ordez:" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Honetan bukatutako lerroak: " -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Honetan bukatutako lerroak: " -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel edizioa" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2607,199 +2625,199 @@ msgstr "Txantiloi-fitxategiaren izena" msgid "Dump table" msgstr "%s taula(k)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Taularen epigrafea gehitu" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Taularen epigrafea" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 #, fuzzy msgid "Continued table caption" msgstr "Taularen epigrafea gehitu" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-mota" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Erlazioak" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Esportazio mota" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Gainean idatzi aurretik badiren fitxategiak" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Sortu/Eguneratu/Egiaztatu datak" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy msgid "Use ignore inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Esportazio mota" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Esportazio mota" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV datuak" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "General" msgstr "Egilea:" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2807,206 +2825,206 @@ msgstr "" msgid "Import" msgstr "Esportatu" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Fitxategiak inportatu" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "Zerbitzaria" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Taulak" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentazioa" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Orri zenbakia:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentazioa" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-historia" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3014,280 +3032,280 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Egoera" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Taula" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Testu-eremua erabili" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Taularen datuak fitxategiarekin ordezkatu " -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3295,427 +3313,427 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Baliabideen mugak" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Taularen \"Order By\" aldatu" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Konexioak" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Taularik ez" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Datu-baserik ez" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3724,300 +3742,300 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Datu-basea" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Taula konpondu" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Sententziak" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "Zerbitzariaren bertsioa" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "Taulak erakutsi" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Kontsulta osoak erakutsi" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Errenkadaren estatistikak" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4025,122 +4043,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Pasahitza" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Erabiltzaile-izena:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Lehenetsia" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4148,58 +4166,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4220,72 +4238,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Datu-basea esportatzeko aukerak" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Datuak" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel datuentzako CSV" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4324,7 +4342,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4353,8 +4371,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Pribilegioak" @@ -4366,7 +4384,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4395,18 +4413,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Pasahitza aldatu" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Pasahitzik ez" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Berridatzi" @@ -4427,8 +4445,8 @@ msgstr "Datu-base berri bat sortu" msgid "Create" msgstr "Sortu" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Pribilegiorik gabe" @@ -4565,8 +4583,8 @@ msgid "Compression:" msgstr "Trinkotzea" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Batez" @@ -4724,7 +4742,7 @@ msgstr "Gakoaren arabera ordenatu" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4761,8 +4779,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4780,49 +4798,49 @@ msgstr "Exekutatu aurretik aukeratutako kontsulta" msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Hil" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "kontsultan" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Errenkadak erakusten" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "guztira" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Aldatu" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Inprimatzeko ikuspena (testu osoak)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF eskema erakutsi" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Esteka aurkitugabea" @@ -5246,12 +5264,12 @@ msgid "Data dump options" msgstr "Datu-basea esportatzeko aukerak" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Taula honen datuak irauli" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Taularen egitura taula honentzat: " @@ -5302,9 +5320,9 @@ msgstr "MIME-mota erabilgarriak" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Zerbitzaria" @@ -5448,43 +5466,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "Prozesuak" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Funtzioak" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Taularentzako murrizketak" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Egitura soilik" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5517,43 +5535,43 @@ msgstr "SQL emaitza" msgid "Generated by" msgstr "Egilea:" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5604,7 +5622,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5681,7 +5699,7 @@ msgid "Charset" msgstr "Karaktere-jokoa" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Binarioa " @@ -5971,8 +5989,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Erabiltzaile-izena" @@ -5991,7 +6009,7 @@ msgid "Variable" msgstr "Aldagaia" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "balioa" @@ -6011,34 +6029,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Edozein erabiltzaile" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Testu-eremua erabili" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Edozein ostalari" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Host hau" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Host taula erabili" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6295,11 +6313,11 @@ msgstr "SQL kontsulta(k) exekutatu %s datu-basean" msgid "Columns" msgstr "Zutabe izenak" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri " @@ -6331,7 +6349,7 @@ msgstr "Soilik ikusi" msgid "Location of the text file" msgstr "Testu-fitxategiaren kokapena" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" @@ -6501,22 +6519,22 @@ msgstr "" "Eraldaketa honentzako deskribapenik ez dago erabilgarri.
Mesedez " "egileari galdetu, %s-(e)k zer egiten duen." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Gehitu %s zutabe" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6738,8 +6756,8 @@ msgstr "Erlazioen ezaaugarri orokorrak" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Erabiltzailea" @@ -6777,7 +6795,7 @@ msgstr "phpMyAdmin-en webgune ofiziala" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6789,21 +6807,21 @@ msgstr "" "lehenetsitako balio hauekin ari da lanean; atzipen-saiakera arrotzei irekita " "beraz. Segurtasun-zulo hau konpondu beharko zenuke." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6811,20 +6829,20 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurazio-fitxategiak orain ezkutuko pasahitz bat behar du " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6833,21 +6851,21 @@ msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7180,121 +7198,121 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ikusi datu-baseen iraulketa (eskema)" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Uneko taulen egiturak aldatzea baimentzen du." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Datu-base eta taula berriak sortzea baimentzen du." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Aldi baterako taulak sortzea baimentzen du." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Datuak ezabatzea baimentzen du." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Datu-base eta taulak ezabatzea baimentzen du." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Taulak ezabatzea baimentzen du." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen " "du." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula " "berkargatu gabe." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Momentuko harian taulak blokeatzea baimentzen du." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Erabiltzaileak orduko zerbitzarira bidali dezakeen kontsulta kopurua " "mugatzen du." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7302,62 +7320,62 @@ msgstr "" "Erabiltzaileak orduko exekuta dezakeen taula edo datu-baserik alda dezaketen " "komando kopurua mugatzen du." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Ez du eraginik MySQL bertsio honetan." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen " "du." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Erreplikazio morroientzat beharrezkoa." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Datuak irakurtzea baimentzen du." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Zerbitzaria amatatzea baimentzen du." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7367,159 +7385,159 @@ msgstr "" "Aldagai orokorrak zehaztu edota beste erabiltzaileen hariak hiltzeko " "bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Datuak aldatzea baimentzen du." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Pribilegiorik ez." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Batez" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Pribilegio orokorrak" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Kudeaketa" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Baliabideen mugak" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Saioa hasteko informazioa" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Pasahitza ez aldatu" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ez da erabiltzailerik aurkitu." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "%s-aren pribilegioak eguneratu dituzu." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "%s ezabatzen" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Pribilegioak berkargatzen" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Editatu Pribilegioak" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Ezeztatu" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Edozein" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Erabiltzailearen info orokorra" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Baimendu" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Erabiltzaile berria gehitu" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Hautatutako erabiltzaileak baztertu" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7533,49 +7551,49 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Pribilegioak gehitu datu-base honetan" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Pribilegioak gehitu taula honetan " -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... mantendu aurrekoa." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... zaharra ezabatu erabiltzaileen tauletatik." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7583,44 +7601,44 @@ msgstr "" " ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Batez" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" datu-basearen pribilegioak egiaztatu." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "orokorra" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "komodina" @@ -8518,7 +8536,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8928,12 +8946,12 @@ msgstr "" msgid "Validated SQL" msgstr "SQL balidatu" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etiketa" @@ -8942,71 +8960,71 @@ msgstr "Etiketa" msgid "Table %1$s has been altered successfully" msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funtzioak" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Bere luzeragatik,
eremu hau ez da editagarria " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Binarioa - ez editatu! " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "eta orduan" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Itzuli" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9110,12 +9128,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s taula ezabatu egin da" @@ -9611,11 +9629,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Deskribapena" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ez daukazu baimen nahikorik hemen orain egoteko!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profila eguneratua izan da." diff --git a/po/fa.po b/po/fa.po index 0cc8cac056..7a3ead1ad6 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "نمايش همه" @@ -35,17 +35,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "جستجو" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -60,14 +63,14 @@ msgstr "جستجو" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -121,7 +124,7 @@ msgid "Database comment: " msgstr "توضيحات جدول" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "توضيحات جدول" @@ -132,7 +135,7 @@ msgstr "توضيحات جدول" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -147,8 +150,8 @@ msgstr "نام ستونها" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -160,13 +163,13 @@ msgstr "نوع" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "خالي" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -185,8 +188,8 @@ msgid "Links to" msgstr "پيوند به" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -202,10 +205,10 @@ msgstr "توضيحات" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "خير" @@ -221,10 +224,10 @@ msgstr "خير" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -251,7 +254,7 @@ msgstr "انتخاب همه" msgid "Unselect All" msgstr "عدم انتخاب همه" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 #, fuzzy msgid "The database name is empty!" msgstr "نام جدول وارد نشده‌است !" @@ -266,81 +269,81 @@ msgstr "جدول %s به %s تغيير نام داده‌شد" msgid "Database %s has been copied to %s" msgstr "جدول %s به %s كپي شد." -#: db_operations.php:365 +#: db_operations.php:366 #, fuzzy msgid "Rename database to" msgstr "بازناميدن جدول به" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "دستور" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy msgid "Remove database" msgstr "بازناميدن جدول به" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "پايگاه داده %s حذف گرديد." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "No databases" -#: db_operations.php:442 +#: db_operations.php:445 #, fuzzy msgid "Copy database to" msgstr "No databases" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "فقط ساختار" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "ساختار و داده‌ها" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "فقط داده‌ها" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "افزودن %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "مقایسه" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -352,24 +355,24 @@ msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %sاينجا%s را بزنيد ." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" msgstr "نمايش الگوي PDF" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "جدول" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -380,13 +383,13 @@ msgstr "سطرها" msgid "Size" msgstr "اندازه" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "in use" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 #, fuzzy @@ -394,20 +397,20 @@ msgid "Creation" msgstr "ساختن" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -415,7 +418,7 @@ msgid_plural "%s tables" msgstr[0] "%s جدول(ها)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -445,7 +448,7 @@ msgid "Descending" msgstr "نزولي" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "نمايش" @@ -466,8 +469,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "يا" @@ -538,17 +541,19 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "مشاهده" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -591,156 +596,141 @@ msgstr "در جدول(هاي) :" msgid "Inside column:" msgstr "در جدول(هاي) :" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "درج" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "ساختار" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "حذف" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "خالي كردن" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s خالي شد" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "ستون %s حذف گرديد" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذف گرديد" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "نمایش" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "مجموع" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "موارد انتخاب‌شده :" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "انتخاب همه" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "عدم انتخاب همه" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "صدور" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "خالي كردن" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "حذف" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "بررسي جدول" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "بهينه‌سازي جدول" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "مرمت جدول" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "تحليل جدول" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "فرهنگ داده‌ها" @@ -748,13 +738,13 @@ msgstr "فرهنگ داده‌ها" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -781,8 +771,8 @@ msgstr "" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "عمل" @@ -829,12 +819,12 @@ msgstr "بررسي جدول" msgid "Database Log" msgstr "پايگاه داده" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -904,7 +894,7 @@ msgstr "سطر حذف گرديد ." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -927,7 +917,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "بازگشت" @@ -1003,11 +993,11 @@ msgstr "نام ميزبان خالي است!" msgid "The user name is empty!" msgstr "نام كاربر خالي است!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "اسم رمز خالي است!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" @@ -1102,115 +1092,121 @@ msgid "Searching" msgstr "جستجو" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "پرس و جوي SQL" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "پرس و جوي SQL" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "موتور" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "غيرفعال" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "توليد‌شده توسط" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "تغيير اسم رمز" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "دوشنبه" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "خير" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "قبل" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1218,96 +1214,96 @@ msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "جمع كل" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "دودويي" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "مارس" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "آوريل" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "مي" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ژوئن" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "جولاي" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "آگوست" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "اكتبر" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1315,174 +1311,174 @@ msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "جمعه" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "هفته" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "ساعت" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr " ثانیه" @@ -1555,9 +1551,9 @@ msgid "Comment" msgstr "توضيحات" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "ويرايش" @@ -1578,15 +1574,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "پايگاههاي داده" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "خطا" @@ -1823,6 +1819,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "درج" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "ساختار" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1887,7 +1909,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "سرور" @@ -1941,7 +1963,7 @@ msgstr "پيغام MySQL :" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "شرح دادن SQL" @@ -1954,11 +1976,11 @@ msgstr "شرح دادن SQL" msgid "Without PHP Code" msgstr "بدون كد PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "ساخت كد PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1968,7 +1990,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "معتبرسازي SQL" @@ -2068,7 +2090,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2091,14 +2113,14 @@ msgid "Select from the web server upload directory %s:" msgstr "" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "ساختار" @@ -2229,7 +2251,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2239,15 +2261,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "ذخيره" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Reset" @@ -2368,137 +2390,133 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "آمار پايگاههاي داده" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "نمايش خصوصيات" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "ذخيره به صورت پرونده" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "مجموعه كاراكترهاي پرونده:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "قالب" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "فشرده‌سازي" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2508,66 +2526,66 @@ msgstr "فشرده‌سازي" msgid "Put columns names in the first row" msgstr "قراردادن نام ستونها در اولين سطر" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "ستونهاي درميان‌گرفته با" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "ستونهاي جداشده با" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "خطوط منتهي به" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "خطوط منتهي به" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2575,199 +2593,199 @@ msgstr "" msgid "Dump table" msgstr "%s جدول(ها)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 #, fuzzy msgid "Relations" msgstr "عمليات" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "صدور" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "قراردادن نام جدولها و ستونها بين علامت نقل‌قول (\" ' \")" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy msgid "Use delayed inserts" msgstr "وروديهاي تمديدشده" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "وروديهاي تمديدشده" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "صدور" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "داده‌هاي CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "General" msgstr "توليد‌شده توسط" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2775,203 +2793,203 @@ msgstr "" msgid "Import" msgstr "صدور" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "آمار پايگاههاي داده" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "سرور" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "جدولها" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "مستندات" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "شماره صفحه:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "مستندات" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "پرس و جوي SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "پرس و جوي SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "پرس و جوي SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy msgid "SQL Validator" msgstr "معتبرسازي SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2979,276 +2997,276 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "جدول" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "افزودن ستون جديد" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "قراردادن نام ستونها در اولين سطر" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "نمايش توضيحات ستون" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3256,418 +3274,418 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "تغيير جدول مرتب شده با" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "No tables" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "No databases" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3676,297 +3694,297 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "پايگاه داده" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "مرمت جدول" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "نمايش توضيحات ستون" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "شرج" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "نسخه سرور" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "نمايش جدولها" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "آمار سطرها" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3974,122 +3992,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "اسم رمز" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "نام كاربر:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "اضافه يا حذف ستونها" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "پيش‌فرض" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4097,58 +4115,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4169,73 +4187,73 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "آمار پايگاههاي داده" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "داده" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV براي داده‌هاي MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4274,7 +4292,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4303,8 +4321,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "امتيازات" @@ -4316,7 +4334,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4345,18 +4363,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "تغيير اسم رمز" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "بدون اسم رمز" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "تكرار" @@ -4377,8 +4395,8 @@ msgstr "ساخت پايگاه داده جديد" msgid "Create" msgstr "ساختن" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 #, fuzzy msgid "No Privileges" msgstr "امتيازات" @@ -4511,8 +4529,8 @@ msgid "Compression:" msgstr "فشرده‌سازي" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "خير" @@ -4666,7 +4684,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4700,8 +4718,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4719,49 +4737,49 @@ msgstr "" msgid "The row has been deleted" msgstr "سطر حذف گرديد ." -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "جمع كل" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "تغيير" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "نمايش توضيحات ستون" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "پيوند پيدا نشد" @@ -5180,12 +5198,12 @@ msgid "Data dump options" msgstr "آمار پايگاههاي داده" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "حذف داده‌هاي جدول" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "" @@ -5235,9 +5253,9 @@ msgstr "نمايش خصوصيات" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "ميزبان" @@ -5380,42 +5398,42 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "تابع" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "فقط ساختار" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5450,43 +5468,43 @@ msgstr "نتيجه SQL" msgid "Generated by" msgstr "توليد‌شده توسط" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "No databases" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5537,7 +5555,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5614,7 +5632,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "دودويي" @@ -5899,8 +5917,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "نام كاربر" @@ -5919,7 +5937,7 @@ msgid "Variable" msgstr "متغییر" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "مقدار" @@ -5939,34 +5957,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "همه كاربران" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "همه ميزبانها" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "محلی" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6220,11 +6238,11 @@ msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" msgid "Columns" msgstr "نام ستونها" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6256,7 +6274,7 @@ msgstr "" msgid "Location of the text file" msgstr "محل پرونده متني" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "" @@ -6407,21 +6425,21 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "افزودن ستون جديد" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6585,8 +6603,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "كاربر" @@ -6624,7 +6642,7 @@ msgstr "صفحه خانه رسمي phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6635,21 +6653,21 @@ msgstr "" "حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " "، و شما بايد اين حفره امنيتي را ذرست كنيد." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6657,18 +6675,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6677,21 +6695,21 @@ msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %sاينجا%s را بزنيد ." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7021,327 +7039,327 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "نمايش الگوي پايگاه داده" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 #, fuzzy msgid "No privileges." msgstr "امتيازات" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "خير" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " نكته : نام امتيازات MySQL به زبان انگليسي بيان مي‌شود ." -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "مدیریت" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "اطلاعات ورود" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "عدم تغيير اسم رمز" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "هيچ كاربري وچود ندارد." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "امتيازات %s به هنگام گرديد." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "شما امتيازات %s را ابطال كرديد" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "در حال پاک کردن %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "ويرايش امتيازات" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "ابطال" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "همه" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 #, fuzzy msgid "Grant" msgstr "چاپ" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "افزودن يك كاربر جديد" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7350,91 +7368,91 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "خير" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8325,7 +8343,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8733,12 +8751,12 @@ msgstr "" msgid "Validated SQL" msgstr "معتبرسازي SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "" @@ -8747,69 +8765,69 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "تابع" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "و سپس" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8911,12 +8929,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "جدول %s حذف گرديد" @@ -9408,11 +9426,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "توضیحات" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "تنظيمات به هنگام گرديد." diff --git a/po/fi.po b/po/fi.po index d9b5c7dab3..158a9ce4ae 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-04-30 18:08+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Näytä kaikki" @@ -38,17 +38,20 @@ msgstr "" "isäntäikkuna on suljettu tai että selaimen tietoturva-asetukset estävät " "ikkunoiden väliset päivitystoiminnot." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Etsi" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Etsi" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "Tietokannan kommentti: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Taulun kommentit" @@ -135,7 +138,7 @@ msgstr "Taulun kommentit" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -150,8 +153,8 @@ msgstr "Sarakkeiden nimet" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -163,13 +166,13 @@ msgstr "Tyyppi" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Tyhjä" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -188,8 +191,8 @@ msgid "Links to" msgstr "Linkitys sarakkeeseen:" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -205,10 +208,10 @@ msgstr "Kommentit" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ei" @@ -224,10 +227,10 @@ msgstr "Ei" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -254,7 +257,7 @@ msgstr "Valitse kaikki" msgid "Unselect All" msgstr "Poista valinta kaikista" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Tietokannan nimi on tyhjä!" @@ -268,81 +271,81 @@ msgstr "Tietokannan %s nimi on nyt %s" msgid "Database %s has been copied to %s" msgstr "Tietokanta %s on kopioitu tietokantaan %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Muuta tietokannan nimi" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Komento" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Muuta tietokannan nimi" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Tietokanta %s on poistettu." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Siirry tietokantaan" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Luo tietokannasta toinen tietokanta nimellä" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Vain rakenne" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Rakenne ja tiedot" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Vain tiedot" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Suorita CREATE DATABASE ennen kopioimista" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Lisää %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Lisää rajoitteet" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Siirry kopioituun tietokantaan" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Aakkosjärjestys" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,24 +357,24 @@ msgstr "" "Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. " "Katso %slisätietoja%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relaatioskeema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Taulu" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -382,33 +385,33 @@ msgstr "Kpl rivejä" msgid "Size" msgstr "Koko" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "käytössä" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Luotu" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Viimeksi päivitetty" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Viimeksi tarkistettu" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -417,7 +420,7 @@ msgstr[0] "%s taulu(a)" msgstr[1] "%s taulu(a)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -447,7 +450,7 @@ msgid "Descending" msgstr "Laskeva" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Näytä" @@ -468,8 +471,8 @@ msgid "Del" msgstr "Poista" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Tai" @@ -542,17 +545,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s hakutulosta taulussa %s" msgstr[1] "%s hakutulosta taulussa %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Selaa" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -597,69 +602,30 @@ msgstr "Tauluista:" msgid "Inside column:" msgstr "Kentän sisältä:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Lisää rivi" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Rakenne" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Tuhoa" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Tyhjennä" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Taulu %s on tyhjennetty" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Näkymä %s on poistettu" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Taulu %s on poistettu" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Seuranta on käytössä." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Seuranta ei ole käytössä." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -668,87 +634,111 @@ msgstr "" "Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %" "sohjeista%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Näkymä" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikaatio" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Summa" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Valitut:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Valitse kaikki" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Poista valinta kaikista" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Vienti" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Tyhjennä" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Tuhoa" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Tarkista taulu" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimoi taulu" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Korjaa taulu" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analysoi taulu" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Tietosanasto" @@ -756,13 +746,13 @@ msgstr "Tietosanasto" msgid "Tracked tables" msgstr "Seurattavat taulut" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -788,8 +778,8 @@ msgstr "Tila" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Toiminnot" @@ -832,12 +822,12 @@ msgstr "Seuraa taulua" msgid "Database Log" msgstr "Tietokantaloki" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -915,7 +905,7 @@ msgstr "Kirjanmerkki on poistettu." msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Kirjanmerkki %s luotu" @@ -943,7 +933,7 @@ msgstr "" "asti ellei PHP:n suoritusaikarajaa nosteta." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Takaisin" @@ -1024,11 +1014,11 @@ msgstr "Palvelimen nimi puuttuu!" msgid "The user name is empty!" msgstr "Käyttäjän nimi puuttuu!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Salasana puuttuu!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" @@ -1135,114 +1125,122 @@ msgid "Searching" msgstr "Etsi" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL-kyselykenttä" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL-kyselykenttä" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Moottorit" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Muutokset tallennettu" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relaatio poistettu" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY -relaatio lisätty" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Sisäinen relaatio luotu" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Virhe: Relaatiota ei luotu." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Virhe: relaatio on jo olemassa." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Virhe tallennettaessa koordinaatteja Suunnittelijaan." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Yleiset relaatio-ominaisuudet" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Pois päältä" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Valitse perusavain tai uniikki avain" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Valitse näytettävä sarake" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Keksi" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Vaihda salasana" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Lahjoita" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Edellinen" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1250,96 +1248,96 @@ msgid "Next" msgstr "Seuraava" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Yhteensä" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binääritietoa" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Maalis" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Huhti" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Touko" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Kesä" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Heinä" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Elo" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Loka" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1347,178 +1345,178 @@ msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Joulu" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Su" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ti" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pe" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "käytössä" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1596,9 +1594,9 @@ msgid "Comment" msgstr "Kommentti" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Muokkaa" @@ -1621,15 +1619,15 @@ msgstr "" "Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee " "poistaa." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Tietokannat" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Virhe" @@ -1882,6 +1880,32 @@ msgstr "Lataa tiedosto" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Lisää rivi" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Rakenne" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1948,7 +1972,7 @@ msgstr "Virheellinen palvelimen indeksi: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Palvelin" @@ -2006,7 +2030,7 @@ msgstr "MySQL ilmoittaa: " msgid "Failed to connect to SQL validator!" msgstr "MySQL-palvelimeen ei voitu yhdistää" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Selitä SQL-kysely" @@ -2018,11 +2042,11 @@ msgstr "Älä selitä SQL-kyselyä" msgid "Without PHP Code" msgstr "Kätke PHP-koodi" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Näytä PHP-koodi" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Päivitä" @@ -2031,7 +2055,7 @@ msgstr "Päivitä" msgid "Skip Validate SQL" msgstr "Älä tarkista SQL-kyselyä" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Tarkista SQL-lause" @@ -2131,7 +2155,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2155,14 +2179,14 @@ msgid "Select from the web server upload directory %s:" msgstr "palvelimen lähetyshakemisto" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "rakenne" @@ -2293,7 +2317,7 @@ msgid "Set value: %s" msgstr "Aseta arvo: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Palauta oletusarvo" @@ -2303,15 +2327,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Tallenna" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Nollaa" @@ -2451,112 +2475,108 @@ msgid "Confirm DROP queries" msgstr "Vahvista DROP-kyselyt" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Tietokantojen näyttöasetukset" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Tietokantaa syötettäessä näytettävä välilehti" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Oletusarvoinen tietokantavälilehti" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Palvelinta syötettäessä näytettävä välilehti" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Oletusarvoinen palvelinvälilehti" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Taulua syötettäessä näytettävä välilehti" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Oletusarvoinen tauluvälilehti" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Näytä binaarisisältö heksamuodossa" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Näytä binaarisisältö heksamuodossa" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Näyttää tietokannat luettelona eikä pudotusvalikkona" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Näytä tietokannat luettelona" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Näytä palvelimet luettelona eikä pudotusvalikkona" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Näytä palvelimet luettelona" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Muokkaa seuraavaa riviä" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Ulkoasun asetukset" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Älä välitä virheistä" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Älä välitä virheistä" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2564,32 +2584,32 @@ msgstr "" "Aseta enimmäissekuntimäärä, jonka skripti saa ajaa ([kbd]0[/kbd] = ei " "aikarajaa)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Suorituksen enimmäiskesto" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Tallenna tiedostoon" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Tiedoston merkistö" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Muoto" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Pakkaus" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2599,70 +2619,70 @@ msgstr "Pakkaus" msgid "Put columns names in the first row" msgstr "Laita sarakkeiden nimet ensimmäiselle riville" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Sarakkeiden rajausmerkki" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Koodinvaihtomerkki" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Korvaa NULL-merkki tällä:" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Poista kentistä CRLF-merkit" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Rivien erotinmerkki" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Rivien erotinmerkki" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-muokkaus" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Tietokantanimen pohja" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Palvelinnimen pohja" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Taulunimen pohja" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2670,118 +2690,118 @@ msgstr "Taulunimen pohja" msgid "Dump table" msgstr "%s taulu(a)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Sisällytä taulun otsikko" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Taulun otsikko" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Jatkettu taulun otsikko" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Tunniste" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-tyyppi" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relaatiot" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Vientityyppi" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Tallenna palvelimelle" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Korvaa jo olemassa oleva(t) tiedosto(t)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Muista tiedostonimen pohja" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Pane taulujen ja sarakkeiden nimet lainausmerkkeihin" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL-yhteensopiva tila" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Luonti-, päivitys- ja tarkistuspäiväykset" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Käytä viivästettyjä lisäyslauseita" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Älä tarkista viiteavaimia" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Käytä BLOB-arvoissa heksalukuja" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Käytä IGNORE:a INSERT-komennoissa" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Luodun kyselyn enimmäispituus" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Vie taulut" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Lisää transaktio" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy #| msgid "Export contents" msgid "Export time in UTC" msgstr "Vie sisällöt" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Pakota käyttämään phpMyAdminissa suojattua yhteyttä" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Pakota käyttämään SSL-yhteyttä" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2789,192 +2809,192 @@ msgstr "" "Lajittelujärjestys viiteavaimen pudotusvalikon kohteille; [kbd]content[/kbd] " "on viitatut tiedot, [kbd]id[/kbd] on avainarvo" -#: libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Viiteavaimen pudotusvalikon järjestys" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "Pudotusvalikkoa käytetään, jos kohteita on enemmän" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Viiteavaimen rajoitus" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Selaustila" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Mukauta selaustilaa" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Muokkaustila" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Mukauta muokkaustilaa" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Vie oletusarvot" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Ominaisuudet" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Keksi" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Tuonti" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Tuo oletusarvot" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Mukauta yleistuonnin oletusasetuksia" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Tuonti ja vienti" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Aseta tuonti- ja vientihakemistot sekä pakkauksen asetukset" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Tietokantojen näyttöasetukset" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigointikehys" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Mukauta navigointikehyksen näkymää" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Palvelimet" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Palvelinten näyttöasetukset" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Taulut" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Taulujen näyttöasetukset" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Pääkehys" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Muut ydinasetukset" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Asetukset, jotka eivät sovi muualle" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Sivunumero:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Kyselyikkuna" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Mukauta kyselyikkunan asetuksia" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Turvallisuus" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2982,27 +3002,27 @@ msgstr "" "Huomaa, että phpMyAdmin on vain käyttöliittymä, ja sen ominaisuuksia ei ole " "rajoitettu MySQL-tietokantaan" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Perusasetukset" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Todennustyyppi" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Todennustyyppi" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Palvelimen määrittely" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3010,17 +3030,17 @@ msgstr "" "Palvelimen lisämäärittely; älä muuta näitä valintoja, ellet tiedä, mihin " "niitä käytetään." -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Anna palvelimen yhteysparametrit" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Asetustiedosto" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3035,56 +3055,56 @@ msgstr "" "ohjeista [a@../Documentation.html#linked-tables]linkitettyjen taulujen " "infrastruktuuri[/a]." -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Mukauta tuonnin oletusasetuksia" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Mukauta navigointikehystä" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Mukauta pääkehystä" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-kyselyt" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL-kyselykenttä" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Mukauta SQL-kyselykentässä näytettäviä linkkejä" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL-kyselyt" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-historia" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3092,49 +3112,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Käynnistys" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Mukauta käynnistyssivua" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Välilehdet" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Valitse haluamasi välilehtien toiminta" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Käytä tekstikenttää" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy!-teksti" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Varoitus" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3142,15 +3162,15 @@ msgstr "" "Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/Gzip]gzip" "[/a]-pakkausta" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Iconv-laajennuksen lisäparametrit" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3158,11 +3178,11 @@ msgstr "" "Jos käytössä, phpMyAdmin jatkaa monilausekyselyjen laskemista, vaikka yksi " "kyselyistä epäonnistui" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Älä välitä peräkkäisistä lausevirheistä" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3172,21 +3192,21 @@ msgstr "" "Tätä kannattaa käyttää tuotaessa suuria tiedostoja; se saattaa kuitenkin " "katkaista transaktiot." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Osittainen tuonti: salli keskeytys" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Älä välitä samanlaisista riveistä" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Korvaa taulun nykyiset rivit tiedostolla" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3194,98 +3214,98 @@ msgstr "" "Oletusmuoto; huomaa, että tämä luettelo riippu sijainnista (tietokanta, " "taulu), ja käytettävissä on vain SQL" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Tuotavan tiedoston muoto" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Käytä LOCAL-avainsanaa" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Sarakenimet ensimmäisessä rivissä" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Älä tuo tyhjiä riviä" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Tuo valuutta-arvot ($5.00 muotoon 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" 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:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Alusta ohitettavien tietueiden (kyselyjen) määrä" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Osittainen tuonti: ohita kyselyjä" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Kuinka monta riviä voi lisätä kerrallaan" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Lisättyjen rivien määrä" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Pikakäyttökuvakkeen kohde" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Näytä vasemmassa kehyksessä logo" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Näytä logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Näytä palvelimen alinta vasemman kehyksen yläkulmassa" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Näytä palvelinten valinta" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Näytä tietokannat puuna" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "Merkkijono, joka jakaa tietokannat eri puutasoille" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Tietokantapuun erotin" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3293,39 +3313,39 @@ msgstr "" "Vain kevyt versio; näytä tietokannat puuna (puu määritellään alla " "osoitetulla erottimella)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Näytä tietokannat puuna" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Poista tämä käytöstä, jos haluat nähdä kaikki tietokannat kerralla" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Käytä kevyttä versiota" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Taulupuun enimmäissyvyys" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Merkkijono, joka jakaa taulut eri puutasoille" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Taulupuun erotin" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logon linkin osoite" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3333,38 +3353,38 @@ msgstr "" "Avaa linkitetty sivu pääikkunassa: ([kbd]main[/kbd]) tai uudessa ikkunassa: " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logon linkin kohde" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Korosta kohdistimen alla oleva palvelin" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Käytä korostusta" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Käytä pelkistettyjä välilehtiä" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Kevyet välilehdet" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, 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 "Näytettävän SQL-kyselyn enimmäispituus" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3375,22 +3395,22 @@ msgstr "" "asetetaan FALSE:ksi, saattaa helposti unohtaa kirjata muut palvelimet ulos, " "mikäli yhteyksiä on muodostettu useisiin palvelimiin." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Poista kaikki evästeet uloskirjauduttaessa" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" "Määritä, onko evästetodennustilassa muistettava edellinen kirjautuminen" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Anna käyttäjänimi" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3402,54 +3422,54 @@ msgstr "" "ajan ja poistetaan, kun selainikkuna suljetaan. Tätä suositellaan " "epäluotetuille ympäristöille." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Kirjautumisevästeen tallennus" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Kirjautumisevästeen kelpoisuus" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Näytettävän SQL-kyselyn enimmäispituus" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Vasemmassa kehyksessä ja tietokantaluettelossa näkyvien tietokantojen " "enimmäismäärä" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Tietokantoja enintään" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3459,29 +3479,29 @@ msgstr "" "enemmän rivejä, näytetään "Edellinen"- ja "Seuraava"-" "linkit." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Näytettävien rivien enimmäismäärä" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Tauluja enintään" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3489,47 +3509,47 @@ msgstr "" "Skriptin varaama enimmäistavumäärä, esim. [kbd]32M[/kbd] ([kbd]0[/kbd] = ei " "rajoitusta)" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Muistirajoitus" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Näytä/kätke vasen valikko" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Lajittele taulu" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Käytä vain kuvakkeita, vain tekstiä tai molempia" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Navigointipalkki, jossa kuvakkeet" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 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:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip-ulostulon puskurointi" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3541,46 +3561,46 @@ msgstr "" "[kbd]SMART[/kbd] - eli laskeva järjestys kentille, joiden tyyppi on TIME, " "DATE, DATETIME tai TIMESTAMP; muulloin nouseva järjestys" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Oletuslajittelujärjestys" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Käytä MySQL-tietokantojen jatkuvia yhteyksiä" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Jatkuvat yhteydet" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Kuvakkeellisen taulun toiminnot" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Estä BLOB- ja BINARY-kenttien muokkaus" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Suojaa binäärikentät" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3594,119 +3614,119 @@ msgstr "" "tarvitaan). Jos poistettu käytöstä, tämä käyttää JavaScript-rutiineja " "kyselyhistorian näyttämisessä (katoaa, kun ikkuna suljetaan)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Pysyvä kyselyhistoria" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Kuinka monta kyselyä historiassa pidetään" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Kyselyhistorian pituus" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Uutta kyselyikkunaa avattaessa näytettävä välilehti" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Oletusarvoinen kyselyikkunavälilehti" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Kyselyikkuna" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Kyselyikkuna" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Kyselyikkuna" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 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:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Merkistön uudelleenkoodaus" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Korjaa säikeet" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Hakemisto, jonne viennit voi tallentaa palvelimella" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Tallennushakemisto" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Jätä tyhjäksi, jos tätä ei käytetä" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Palvelintodennuksen järjestys" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Käytä oletusarvoja jättämällä tyhjäksi" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Palvelintodennuksen säännöt" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Salli kirjautumiset ilman salasanaa" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Salli pääkäyttäjän kirjautuminen" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3715,19 +3735,19 @@ msgstr "" "[a@http://swekey.com]SweKey-laitteistotodennuksen[/a] asetustiedoston polku " "(ei dokumenttijuuressa; suositeltu: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "SweKey-asetustiedosto" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Käytettävä todennustyyppi" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Todennustyyppi" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3735,11 +3755,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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Kirjanmerkkitaulu" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3747,31 +3767,31 @@ msgstr "" "Jätä tyhjäksi, jos et halua sarakkeiden kommentteja ja mime-tyyppejä; " "oletusarvo: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Saraketietojen taulu" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Pakkaa MySQL-palvelimen yhteys" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Pakkaa yhteys" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Kuinka palvelimeen yhdistetään; käytä tcp:tä, jos olet epävarma" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Yhteystyyppi" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Hallintakäyttäjän salasana" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3780,19 +3800,19 @@ msgstr "" "lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/controluser]wikissä" "[/a]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Hallintakäyttäjä" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Laske taulujen määrä, kun tietokantaluettelo näytetään" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Laske taulujen määrä" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3800,11 +3820,11 @@ msgstr "" "Jätä tyhjäksi, jos et halua Suunnittelija-taulua; oletusarvo: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Suunnittelija-taulu" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3813,28 +3833,28 @@ msgstr "" "virheenjäljittimestä[/a] ja [a@http://bugs.mysql.com/19588]MySQL:n " "ohjelmavirheistä[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Poista INFORMATION_SCHEMA käytöstä" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Käytettävä PHP-laajennus; mysqli-laajennusta tulisi käyttää, jos sitä tuetaan" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Käytettävä PHP-laajennus" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Piilota tietokannat, jotka vastaavat säännöllistä lauseketta (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Piilota tietokannat" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3842,31 +3862,31 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL-kyselyhistorian taulu" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "MySQL-palvelimen verkkonimi" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Palvelimen verkkonimi" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Uloskirjautumisen verkko-osoite" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Yritä yhdistää ilman salasanaa" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Yhdistä ilman salasanaa" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3882,30 +3902,30 @@ msgstr "" "koodinvaihtomerkin, mikäli haluat käyttää niiden todellista ilmentymää; " "käytä esimerkiksi 'oma\\_db' eikä 'oma_db'." -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Näytä vain luetteloidut tietokannat" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Jätä tyhjäksi, jot et käytä config-todennusta" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Config-todennuksen salasana" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF-kaavio: sivujen taulu" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3915,22 +3935,22 @@ 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "tietokannan nimi" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Palvelinportti" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3938,19 +3958,19 @@ 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Relaatiotaulu" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "Mahdollisten tietokantojen noutoon käytettävä SQL-käsky" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES -käsky" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3958,44 +3978,44 @@ msgstr "" "Katso [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]todennustyyppien[/" "a] esimerkit" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Signon-istunnon nimi" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Signon-kirjautumisen verkko-osoite" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Palvelinpistoke, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä " "tyhjäksi" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Palvelinpistoke" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Yhdistä MySQL-palvelimeen käyttäen SSL-yhteyttä" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Käytä SSL-yhteyttä" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea; oletusarvo: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF-kaavio: taulun koordinaatit" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4007,53 +4027,53 @@ msgstr "" "Taulu, joka kuvaa näyttökentät; jätä tyhjäksi, jos et halua tukea; " "oletusarvo: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Näyttökenttien taulu" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Tieto" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4065,25 +4085,25 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL-kyselyhistorian taulu" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automaattinen palautuminen" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4095,15 +4115,15 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Config-todennuksen käyttäjä" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4111,11 +4131,11 @@ msgstr "" "Poista käytöstä, mikäli tiedät pma_*-taulujesi olevan ajan tasalla. Tämä " "estää yhteensopivuustarkistukset ja lisää siten suorituskykyä." -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Yksityiskohtainen tarkistus" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4123,22 +4143,22 @@ 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:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Tämän palvelimen yksityiskohtainen nimi" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Pitääkö käyttäjälle näyttää \"Näytä kaikki (tietueet)\" -painike" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Salli kaikkien rivien näyttäminen" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4148,35 +4168,35 @@ msgstr "" "todennusta käytettäessä, koska salasana lukee suoraan asetustiedostossa; " "tämä ei estä saman komennon suorittamista suoraan." -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Näytä salasananvaihtolomake" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Näytä tietokannanluontilomake" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Näytä avoimet taulut" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Näytä funktiokentät muokkaus- ja liäsystilassa" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Näytä funktiokentät" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4184,31 +4204,31 @@ msgstr "" "Näyät linkki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]-" "käskyn tulosteeseen" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Näytä phpinfo()-linkki" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Näytä MySQL-palvelimen tarkat tiedot" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Näytä SQL-kyselyt" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Näytä tilastot" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4216,11 +4236,11 @@ msgstr "" "Jos työkaluvihjeet ovat päällä ja tietokannan kommentti on asetettu, tämä " "näyttää kommentin ja oikean nimen" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Näytä tietokannan kommentti, ei nimi" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4232,61 +4252,61 @@ msgstr "" "['LeftFrameTableSeparator']-asetuksen mukaisesti, jolloin vain kansiota " "kutsutaan aliaksena, itse taulun nimi pysyy muuttumattomana" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Näytä taulun kommentti, ei nimi" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Näytä taulun kommentit työkaluvihjeissä" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Merkitse käytetyt taulut ja mahdollista lukittuja tauluja sisältävien " "tietokantojen näyttäminen" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Ohita lukitut taulut" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Salasana" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Käyttäjänimi" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4294,65 +4314,65 @@ msgstr "" "Ehdota tietokannan nimeä "Luo tietokanta" -lomakkeessa " "(mahdollisuuksien mukaan) tai pidä tekstikenttä tyhjänä" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Ehdota uuden tietokannan nimeä" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR-tekstikentän sarakkeet" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR-tekstikentän rivit" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Oletusarvoinen tauluvälilehti" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4364,39 +4384,39 @@ 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:487 +#: libraries/config/messages.inc.php:486 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:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Lähetyshakemisto" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Antaa hakea koko tietokannasta" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Käytä tietokantahakua" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4405,15 +4425,15 @@ msgstr "" "Näytä monilausekyselyjen kaikki vaikuttuneet rivit. Katso libraries/import." "lib.php-tiedoston oletusarvoista, kuinka monta kyselyä lauseessa voi olla." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Yksityiskohtaiset peräkkäiset lauseet" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Tarkista uusin versio" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4421,7 +4441,7 @@ msgstr "" "Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a]-pakkausta" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4450,74 +4470,74 @@ msgid "Signon authentication" msgstr "Palvelintodennuksen järjestys" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV käyttäen LOAD DATA -kyselyä" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS -työkirja" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX -työkirja" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Muu väri" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Tietokannan tulostusvalinnat" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Tietoa" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excelin CSV-muoto" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4557,7 +4577,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Tapahtumat" @@ -4586,8 +4606,8 @@ msgid "Designer" msgstr "Suunnittelija" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Käyttöoikeudet" @@ -4599,7 +4619,7 @@ msgstr "Rutiinit" msgid "Return type" msgstr "Paluutyyppi" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4631,18 +4651,18 @@ msgid "Details..." msgstr "Lisätiedot..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Vaihda salasana" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Ei salasanaa" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Kirjoita uudelleen" @@ -4665,8 +4685,8 @@ msgstr "Luo uusi tietokanta" msgid "Create" msgstr "Luo" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Ei käyttöoikeuksia" @@ -4812,8 +4832,8 @@ msgid "Compression:" msgstr "Pakkaus" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Ei mitään" @@ -4994,7 +5014,7 @@ msgstr "Lajittele avaimen mukaan" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5029,8 +5049,8 @@ msgstr "Näytä binäärisisältö" msgid "Show BLOB contents" msgstr "Näytä BLOB-sisältö" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Kätke" @@ -5048,49 +5068,49 @@ msgstr "Suorita kysely kirjanmerkeistä" msgid "The row has been deleted" msgstr "Rivi on poistettu" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Lopeta" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "lauseessa" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Näkyvillä rivit " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "yhteensä" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "kysely kesti %01.4f sek." -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Muokkaa" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Näytä PDF-kaavio" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Linkkiä ei löydy" @@ -5566,12 +5586,12 @@ msgid "Data dump options" msgstr "Tietokantojen näyttöasetukset" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Vedos taulusta" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Rakenne taululle" @@ -5628,9 +5648,9 @@ msgstr "Mahdolliset MIME-tyypit" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Palvelin" @@ -5776,40 +5796,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Proseduurit" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funktiot" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Rajoitteet taululle" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYYPIT TAULULLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELAATIOT TAULULLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Herättimet" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Näkymän rakenne" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Näkymän vararakenne" @@ -5844,43 +5864,43 @@ msgstr "SQL-kyselyn tulos" msgid "Generated by" msgstr "Luontiympäristö" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän vastauksen, toisin sanoen nolla riviä." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "näyttää rakenteen sisällön painamalla sen nimeä" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Siirry tietokantaan" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "asetukset" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Siirry tauluun" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Siirry näkymään" @@ -5932,7 +5952,7 @@ msgstr "Virheellinen kenttien määrä CSV-syötteessä rivillä %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Taulun nimi" @@ -6019,7 +6039,7 @@ msgid "Charset" msgstr "Merkistökoodaus" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binääritietoa" @@ -6305,8 +6325,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Käyttäjänimi" @@ -6325,7 +6345,7 @@ msgid "Variable" msgstr "Muuttuja" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Arvo" @@ -6346,34 +6366,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Lisää alireplikaatiokäyttäjä" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Kuka tahansa käyttäjä" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Käytä tekstikenttää" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Mikä tahansa palvelin" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Paikallinen" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Tämä isäntä" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Käytä isäntätaulua" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6629,11 +6649,11 @@ msgstr "Suorita SQL-kyselyjä tietokannassa %s" msgid "Columns" msgstr "Sarakkeiden nimet" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" @@ -6665,7 +6685,7 @@ msgstr "Näytä" msgid "Location of the text file" msgstr "Tiedoston sijainti" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "palvelimen lähetyshakemisto" @@ -6830,22 +6850,22 @@ msgstr "" "Tälle muunnokselle ei ole saatavilla kuvausta.
Kysy tekijältä, mitä %s " "tekee." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Tallennusmoottori" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "PARTITION-määritelmä" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Lisää sarake/sarakkeita" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7102,8 +7122,8 @@ msgstr "asetukset" msgid "Protocol version" msgstr "Protokollan versio" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Käyttäjä" @@ -7140,7 +7160,7 @@ msgstr "phpMyAdminin kotisivut" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7151,7 +7171,7 @@ msgstr "" "(root ilman salasanaa). Tällaisin asetuksin MySQL-palvelin on altis " "hyökkäyksille. Tämä tietoturvariski on syytä korjata pikimmiten!" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7161,7 +7181,7 @@ msgstr "" "valinta ei sovi yhteen phpMyAdminin kanssa ja saattaa johtaa tietojen " "katoamiseen!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7171,7 +7191,7 @@ msgstr "" "olevan käytössä. Ilman mbstring-laajennusta phpMyAdmin ei osaa jaotella " "merkkijonoja oikein, ja tästä saattaa koitua odottamattomia seurauksia." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7183,11 +7203,11 @@ msgstr "" "phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi erääntyy " "nopeammin kuin phpMyAdminissa on määritetty." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Asetustiedosto vaatii nyt salalausetta (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7197,7 +7217,7 @@ msgstr "" "hakemistossa. Sinun tulee poistaa kansio, kun phpMyAdminin asetukset on " "määritetty." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7206,14 +7226,14 @@ msgstr "" "Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. " "Katso %slisätietoja%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7222,7 +7242,7 @@ msgstr "" "PHP:n MySQL-kirjaston versio %s poikkeaa MySQL-palvelimen versiosta %s. " "Tästä voi koitua arvaamattomia seurauksia." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7574,114 +7594,114 @@ msgstr "Tallennusmoottorit" msgid "View dump (schema) of databases" msgstr "Näytä tietokannoista vedos (skeema)" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Sallii uusien tietokantojen ja taulujen luomisen." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Sallii talletettujen rutiinien luomisen." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Sallii uusien taulujen luomisen." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Sallii tilapäisten taulujen luomisen." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Sallii uusien näkymien luomisen." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Sallii tietojen poistamisen." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Sallii tietokantojen ja taulujen poistamisen." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Sallii taulujen poistamisen." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Sallii talletettujen rutiinien suorittamisen." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Sallii tietojen tuomisen ja viemisen." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Sallii käyttäjien ja käyttöoikeuksien lisäämisen lataamatta " "käyttöoikeustauluja uudestaan." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Sallii indeksien luomisen ja poistamisen." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Sallii tietojen lisäämisen ja korvaamisen." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Rajoittaa käyttäjän tunnissa luomien uusien yhteyksien määrän." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Rajoittaa käyttäjän tunnissa palvelimelle lähettämien kyselyjen määrän." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7689,60 +7709,60 @@ msgstr "" "Rajoittaa, kuinka monta monta kertaa käyttäjä saa suorittaa tauluihin tai " "tietokantoihin muutoksia tekeviä komentoja tunnin aikana." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin " "tyhjentämisen." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Tarvitaan replikaatiota käyttävissä alipalvelimissa." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Sallii tietojen lukemisen." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Sallii koko tietokantaluettelon käytön." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Sallii palvelimen sammuttamisen." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7752,158 +7772,158 @@ msgstr "" "saavutettu; Tarvitaan useissa pääkäyttäjän toiminnoissa kuten globaalien " "muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Sallii tietojen muuttamisen." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Ei käyttöoikeuksia." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ei mitään" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi! " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Hallinta" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resurssirajoitukset" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Kirjautumistiedot" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Älä vaihda salasanaa" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Käyttäjiä ei ole." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Käyttäjä %s on jo olemassa!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on päivitetty." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Käyttäjän %s käyttöoikeudet on poistettu" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Käyttäjän %s salasanan vaihto onnistui." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Poistetaan: %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Ladataan käyttöoikeuksia uudelleen" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Muokkaa käyttöoikeuksia" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Pura käyttöoikeudet" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Mikä tahansa" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Käyttäjien yleiskatsaus" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Lisää uusi käyttäjä" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Poista valitut käyttäjät" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7916,52 +7936,52 @@ msgstr "" "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Korvausmerkkien _ ja % eteen on lisättävä \\-merkki, jotta ne näkyisivät " "oikein" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Lisää käyttöoikeudet seuraavaan tauluun" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... säilytä vanha käyttäjä." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... poista vanha käyttäjä käyttäjätauluista." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " "käyttäjä sen jälkeen." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7969,45 +7989,45 @@ msgstr "" " ... poista vanha käyttäjä käyttäjätauluista ja lataa käyttöoikeudet sen " "jälkeen uudelleen." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Tietokanta käyttäjälle" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ei mitään" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Anna tietokannalle "%s" kaikki oikeudet" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globaali" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "tietokantakohtainen" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "korvausmerkki" @@ -9060,7 +9080,7 @@ msgstr "Lähteeseen ei voida muodostaa yhteyttä" msgid "Could not connect to the target" msgstr "Kohteeseen ei voida muodostaa yhteyttä" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9583,12 +9603,12 @@ msgstr "Näytetään SQL-kysely" msgid "Validated SQL" msgstr "Tarkista SQL-lause" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Tunniste" @@ -9597,74 +9617,74 @@ msgstr "Tunniste" msgid "Table %1$s has been altered successfully" msgstr "Taulun %1$s muuttaminen onnistui." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Selaa viitearvoja" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funktio" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Pituudestaan johtuen
tätä saraketta ei voine muokata " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Poista BLOB-tietokantaviittaus" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binääritietoa - älä muokkaa" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Lähetä BLOB-tietokantaan" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "ja sen jälkeen" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Takaisin" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Käytä arvojen välillä siirtymiseen sarkainta. Ctrl- ja nuolinäppäimillä voi " "siirtyä mihin tahansa kohtaan." -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9775,12 +9795,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Taulu %s on jo olemassa!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Taulu %1$s on luotu." @@ -10275,11 +10295,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Kuvaus" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Sinulla ei ole riittäviä oikeuksia!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profiili on päivitetty." diff --git a/po/fr.po b/po/fr.po index b35ae0cb50..79b05a6e8c 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" -"PO-Revision-Date: 2010-09-20 22:00+0200\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" +"PO-Revision-Date: 2010-09-23 18:08+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Tout afficher" @@ -38,17 +38,20 @@ msgstr "" "l'ayiez fermée, ou encore que votre navigateur bloque les mises à jour inter-" "fenêtres pour des raisons de sécurité." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Rechercher" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Rechercher" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Commentaire sur la base de données: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Commentaires sur la table" @@ -133,7 +136,7 @@ msgstr "Commentaires sur la table" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -146,8 +149,8 @@ msgstr "Colonne" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -159,13 +162,13 @@ msgstr "Type" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -184,8 +187,8 @@ msgid "Links to" msgstr "Relié à" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -201,10 +204,10 @@ msgstr "Commentaires" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Non" @@ -220,10 +223,10 @@ msgstr "Non" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -250,7 +253,7 @@ msgstr "Tout sélectionner" msgid "Unselect All" msgstr "Tout désélectionner" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Le nom de la base de données est vide !" @@ -264,77 +267,77 @@ msgstr "La base de données %s a été renommée en %s" msgid "Database %s has been copied to %s" msgstr "La base de données %s a été copiée sur %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Changer le nom de la base de données pour" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Commande" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Supprimer la base de données" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "La base de données %s a été effacée." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Supprimer la base de données (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Copier la base de données vers" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure seule" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structure et données" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Données seulement" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Faire CREATE DATABASE avant la copie" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Ajouter %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Inclure les contraintes de clés étrangères" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Aller à la base de données copiée" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Interclassement" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -343,22 +346,22 @@ msgstr "" "Le stockage des configurations phpMyAdmin a été désactivé. Pour une analyse " "du problème, cliquez %sici%s." -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "Éditer ou exporter un schéma relationnel" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Table" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -369,33 +372,33 @@ msgstr "Enregistrements" msgid "Size" msgstr "Taille" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "utilisé" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Création" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Dernière modification" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Dernière vérification" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -403,7 +406,7 @@ msgstr[0] "%s table" msgstr[1] "%s tables" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -433,7 +436,7 @@ msgid "Descending" msgstr "Décroissant" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Afficher" @@ -454,8 +457,8 @@ msgid "Del" msgstr "Effacer" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Ou" @@ -523,17 +526,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s occurence dans la table %s" msgstr[1] "%s occurences dans la table %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Afficher" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -575,69 +580,30 @@ msgstr "Dans la(les) table(s) :" msgid "Inside column:" msgstr "Dans la colonne: " -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Insérer" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Structure" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Supprimer" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Vider" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "La table %s a été vidée" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "La vue %s a été supprimée" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "La table %s a été effacée" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Le suivi est actif." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Le suivi n'est pas activé." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -646,87 +612,111 @@ msgstr "" "Cette vue contient au moins ce nombre d'enregistrements. Veuillez référer à %" "sdocumentation%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Vue" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Réplication" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Somme" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Pour la sélection :" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Tout cocher" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Tout décocher" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exporter" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Vider" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Supprimer" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Vérifier la table" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimiser la table" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Réparer la table" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyser la table" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dictionnaire de données" @@ -734,13 +724,13 @@ msgstr "Dictionnaire de données" msgid "Tracked tables" msgstr "Tables faisant l'objet d'un suivi" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -766,8 +756,8 @@ msgstr "État" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Action" @@ -810,12 +800,12 @@ msgstr "Suivre la table" msgid "Database Log" msgstr "Journal de la base de données" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "Valeurs pour la colonne «%s»" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "Saisir chaque valeur dans un champ séparé." @@ -899,7 +889,7 @@ msgstr "Le signet a été effacé." msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" @@ -927,7 +917,7 @@ msgstr "" "limite de temps de PHP ne soit augmentée." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Retour" @@ -1007,11 +997,11 @@ msgstr "Le nom de serveur est vide !" msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide !" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Le mot de passe est vide !" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" @@ -1092,100 +1082,108 @@ msgid "Searching" msgstr "En recherche" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "Basculer la visibilité de la boîte de requêtes" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Boîte de requêtes SQL" #: js/messages.php:85 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Boîte de requêtes SQL" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "Éditiion sur place" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relation supprimée" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Relation de type FOREIGN KEY ajoutée" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Relation interne ajoutée" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Erreur: relation non ajoutée." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Erreur: relation déjà existante." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Erreur lors de la sauvegarde des coordonnées Concepteur." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Fonctions relationnelles" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Désactivé" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Veuillez choisir la clé primaire ou un index unique" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Colonne descriptive" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Générer" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "Modifier le mot de passe" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "plus" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Fermer" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "Précédent" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1193,231 +1191,231 @@ msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "Janvier" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "Février" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "Mars" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "Avril" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "Juin" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "Juillet" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "Août" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "Septembre" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "Octobre" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "Novembre" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Décembre" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "Lundi" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "Sem" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "Heure" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "Minute" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "Seconde" @@ -1495,9 +1493,9 @@ msgid "Comment" msgstr "Commentaire" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Modifier" @@ -1520,15 +1518,15 @@ msgstr "" "Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être " "supprimé." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Bases de données" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Erreur" @@ -1776,6 +1774,32 @@ msgstr "Télécharger" msgid "Could not open file: %s" msgstr "Échec d'ouverture du fichier %s" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Insérer" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Structure" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "Statistiques sur les requêtes" @@ -1842,7 +1866,7 @@ msgstr "" "Nom d'hôte (hostname) invalide pour le serveur %1$s. Veuillez vérifier votre " "configuration." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Serveur" @@ -1897,7 +1921,7 @@ msgstr "MySQL a répondu: " msgid "Failed to connect to SQL validator!" msgstr "Connexion au validateur SQL impossible" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Expliquer SQL" @@ -1909,11 +1933,11 @@ msgstr "Ne pas expliquer SQL" msgid "Without PHP Code" msgstr "Sans source PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Créer source PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Actualiser" @@ -1922,7 +1946,7 @@ msgstr "Actualiser" msgid "Skip Validate SQL" msgstr "Ne pas valider SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Valider SQL" @@ -2020,7 +2044,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2044,14 +2068,14 @@ msgstr "" "Choisissez depuis le répertoire de téléchargement du serveur web %s :" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "structure" @@ -2172,7 +2196,7 @@ msgid "Set value: %s" msgstr "Assigner la valeur: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Ramener la valeur par défaut" @@ -2182,15 +2206,15 @@ msgstr "Permettre aux utilisateurs de personnaliser cette valeur" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Sauvegarder" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Réinitialiser" @@ -2328,18 +2352,14 @@ msgid "Confirm DROP queries" msgstr "Confirmer les requêtes de suppression (DROP)" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "Navigation des champs au moyen de Ctrl+flèches" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "Déboguer SQL" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "Valeur par défaut de la direction de l'affichage" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" @@ -2347,84 +2367,84 @@ msgstr "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] ou un nombre qui indique la " "valeur maximum pour lequel le mode vertical sera utilisé" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "Direction de l'affichage pour modifier/créer des colonnes" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "L'onglet affiché lors de l'entrée dans une base de données" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Onglet par défaut pour bases de données" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "L'onglet initial dans l'affichage serveur" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Onglet par défaut pour serveur" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "L'onglet initial lors de l'accès à une table" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Onglet par défaut pour tables" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Montrer par défaut le contenu binaire en hexadécimal" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Montrer le contenu binaire en hexadécimal" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Montrer la liste des bases de données au lieu d'un menu déroulant" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Affiche les bases de données sous forme de liste" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Affiche les serveurs sous forme de liste" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "Éditer les requêtes SQL dans une fenêtre popup" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "Édition dans la fenêtre" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 msgid "Display errors" msgstr "Affichage des erreurs" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "Collecter les erreurs" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" "Utiliser des icônes pour les avertissements, les erreurs et les informations." -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "Icônes pour les erreurs" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2432,32 +2452,32 @@ msgstr "" "Nombre de secondes allouées à l'exécution des scripts ([kbd]0[/kbd] signifie " "illimité)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Durée maximum d'exécution" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Transmettre" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Jeu de caractères du fichier" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compression" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2465,169 +2485,169 @@ 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:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "Colonnes entourées par" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "Caractère d'échappement" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Remplacer NULL par" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 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:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "Colonnes terminées par" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Lignes terminées par" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "Excel en version" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Modèle de nom de base de données" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Modèle de nom de serveur" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Modèle de nom de table" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 msgid "Dump table" msgstr "Exporter la table" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Inclure les sous-titres" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Sous-titre de la table" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Inclure les sous-titres" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Clé de l'étiquette" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Type MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 msgid "Export method" msgstr "Méthode d'exportation" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Sauvegarder sur le serveur" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Écraser les fichiers existants" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Se souvenir du modèle de nom de fichier" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "Entourer les noms de tables et colonnes de guillemets obliques" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Mode de compatibilité SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "Syntaxe à utiliser lors de l'insertion de données" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Dates de création/mise à jour/vérification" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Insertions avec délai" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Désactiver la vérification des clés étrangères" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Utiliser l'hexadécimal pour un BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Ne pas insérer une ligne faisant doublon avec une clé unique" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Taille maximum de la requête générée" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 msgid "Export type" msgstr "Type d'exportation" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Utiliser le mode transactionnel" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "Exporter l'heure en format UTC" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Force des connexions https entre le navigateur et phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Forcer les connexions SSL" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2635,164 +2655,164 @@ 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Ordre dans le menu des clés étrangères" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Limite pour clé étrangère" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Mode affichage" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Personnaliser le mode affichage" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "Personnaliser les options par défaut" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "Dévelopeur" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "Réglages pour les développeurs phpMyAdmin" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Mode édition" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Personnaliser le mode édition" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Valeurs par défaut pour exportation" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Personnaliser les valeurs utilisées habituellement" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Fonctionnalités" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 msgid "General" msgstr "Général" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "Réglage de quelques options couramment utilisées" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importer" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Valeurs par défaut pour importation" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Personnaliser les valeurs utilisées habituellement" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Importation / exportation" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 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:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Options d'affichage des bases de données" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Panneau de navigation" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Personnaliser l'apparence du panneau de navigation" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Serveurs" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Options d'affichage des serveurs" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tables" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Options d'affichage des tables" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Panneau principal" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 msgid "Open Document" msgstr "Texte Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Autres réglages de base" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Réglages divers" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 msgid "Page titles" msgstr "Titres de page" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -2802,22 +2822,22 @@ msgstr "" "[a@Documentation.html#cfg_TitleTable]documentation[/a] pour les chaînes " "magiques pouvant être utilisées." -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Fenêtre de requête" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Personnaliser le panneau de requêtes" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Sécurité" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2825,23 +2845,23 @@ msgstr "" "Veuillez noter que phpMyAdmin n'est qu'une interface et que ses réglages ne " "limitent en rien MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Configuration de base" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 msgid "Authentication" msgstr "Type d'authentification" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "Réglages d'authentification" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Configuration du serveur" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -2849,15 +2869,15 @@ msgstr "" "Configuration avancée, assurez-vous de connaître la signification de ces " "options avant de les modifier" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Entrez les paramètres de connexion au serveur" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "Stockage de configuration" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -2867,54 +2887,54 @@ msgstr "" "fonctionnalités additionnelles, voir [a@../Documentation.html#linked-tables]" "phpMyAdmin configuration storage[/a] dans la documentation" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "Suivi des changements" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" "Suivi des changements faits dans la base de données. Requiert de configurer " "les fonctions avancées (pmadb)." -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Personnaliser les valeurs pour exportation" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Personnaliser les valeurs pour importation" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Personnaliser le cadre de navigation" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Personnaliser le cadre principal" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Requêtes SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "Boîte de requêtes SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 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:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "Réglages des requêtes SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 msgid "SQL Validator" msgstr "Validateur SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2926,43 +2946,43 @@ msgstr "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Page de départ" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Personnaliser la page de départ" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Onglets" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Personnaliser les onglets" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "Champs texte" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "Personnaliser les champs de saisie" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texte Texy!" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "Avertissements" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Désactiver certains avertissements affichés" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -2970,15 +2990,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:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Paramètres pour iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -2986,11 +3006,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:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignorer les erreurs dans les requêtes multi-énoncés" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3000,21 +3020,21 @@ msgstr "" "point d'être atteinte. Ceci pourrait aider à importer des fichiers " "volumineux, au détriment du respect des transactions." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Permettre l'interruption lors de l'importation" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignorer les doublons" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Remplacer les données de la table avec le fichier" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3022,128 +3042,128 @@ 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Format du fichier d'importation" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Utiliser l'option LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Noms de colonnes en première ligne" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Ne pas importer les lignes vides" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importer les valeurs de monnaie ($5.00 devient 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 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:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "Nombre de requêtes à sauter à partir du début" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Nombre de requêtes à ignorer" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "Valeur initiale des zones de glissement" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Le nombre d'enregistrements qui peuvent être insérés à la fois." -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Nombre d'enregistrements à insérer" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Cible de l'icône d'accès rapide" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Montrer le logo dans le panneau de navigation" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Affichage du logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Montrer le choix de serveurs au haut du panneau de navigation" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Affiche la liste des serveurs" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 msgid "Display table filter" msgstr "Montrer le filtre de table" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 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:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Séparateur pour l'arborescence des bases de données" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "En affichage léger; déterminé par le séparateur)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Montre les bases de données dans une arborescence" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" "Désactiver ceci si vous désirez voir toutes les bases de données d'un seul " "coup dans le panneau de navigation" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Active l'affichage léger" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Nombre de niveaux pour l'arborescence des tables" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 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:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Séparateur pour l'arborescence des noms de tables" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "L'URL vers lequel le logo dans le panneau de navigation pointera" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "URL du lien sous le logo" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3151,38 +3171,38 @@ msgstr "" "Pour la fenêtre principale, ([kbd]main[/kbd]) ou dans une nouvelle fenêtre, " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Fenêtre-cible pour la page ouverte lors d'un clic sur le logo" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Faire ressortir le nom du serveur dans le panneau de navigation" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Active la surbrillance" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Utiliser des onglets moins intenses graphiquement" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Onglets légers" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 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:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "Limiter le nombre de caractères dans la colonne" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3191,11 +3211,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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Détruire tous les cookies à la déconnexion" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3203,11 +3223,11 @@ msgstr "" "Sur le panneau de connexion (mode cookie ), le nom du précédent utilisateur " "devrait-il apparaître?" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Se souvenir du nom d'utilisateur" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3219,54 +3239,54 @@ msgstr "" "la session; ceci est recommandé si l'environnement n'est pas digne de " "confiance." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Stockage du cookie" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Le nombre de secondes pendant lequel la connexion demeure valide" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Durée de validité de la connexion (mode cookie)" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 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:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "Zone de texte plus grande pour LONGTEXT" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "Utiliser des icônes sur la page principale" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Taille maximum des requêtes SQL affichées" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "Les utilisateurs ne peuvent choisir une plus grande valeur" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Nombre maximum de bases de données affichées dans le panneau de gauche et la " "liste des bases" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Nombre maximum de bases de données" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3277,19 +3297,19 @@ msgstr "" "« Suivant » et « Précé" "dent » seront affichés." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Nombre maximum d'enregistrements à afficher" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 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:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Nombre maximum de tables" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -3297,11 +3317,11 @@ msgstr "" "Désactive l'avertissement par défaut qui est affiché si mcrypt est manquant " "pour l'authentification par cookie." -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "avertissement mcrypt" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3309,44 +3329,44 @@ 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Limite mémoire" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "Montrer à gauche le lien d'effacement" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "Montrer à droite le lien d'effacement" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 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:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "Ordre naturel" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Utiliser les icônes (true), du texte (false) ou les deux (both)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Apparence de la barre de navigation" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "sert à augmenter la vitesse des transferts HTTP" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "Tampon de sortie GZip" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3354,19 +3374,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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Ordre de tri par défaut" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "...au serveur MySQL" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Connexions persistentes" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3375,23 +3395,23 @@ msgstr "" "Désactiver l'avertissement affiché sur la page Structure de bases de données " "si l'une des tables du stockage de configuration phpMyAdmin est manquante" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tables manquantes pour le stockage de configuration phpMyAdmin" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Icônes pour les actions sur les tables" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Empêche l'édition des colonnes BLOB et BINARY" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "Protéger les colonnes avec contenu binaire" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3401,112 +3421,112 @@ msgstr "" "configuration phpMyAdmin. Si désactivé, utilise Javascript pour afficher un " "historique temporaire (sera perdu à la fermeture de la fenêtre)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Historique permanent des requêtes" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Le nombre de requêtes à conserver dans l'historique" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Taille de l'historique" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "L'onglet affiché à l'ouverture d'une fenêtre de requêtes." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Onglet par défaut pour fenêtre de requêtes" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "Hauteur de la fenêtre de requêtes (en pixels)" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "Hauteur de la fenêtre de requêtes" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "Largeur de la fenêtre de requêtes (en pixels)" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "Largeur de la fenêtre de requêtes" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 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:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Moteur de conversion" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 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:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "Répéter les en-têtes" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "Affiche un bouton d'aide au lieu du message Documentation" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "Afficher un bouton d'aide" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 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:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Répertoire de sauvegarde" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Laisser vide si non utilisé" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "Ordre d'autorisation des serveurs" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Laisser vide pour la valeur par défaut" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "Règles d'autorisation des serveurs" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Permettre les connexions sans fournir de mot de passe" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Permettre une connexion à root" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "Domaine de protection (realm) à afficher lors d'une authentification HTTP " "Basic" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "Domaine de protection HTTP" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3516,19 +3536,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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "Fichier de configuration SweKey" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Type d'authentification" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Type d'authentification" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3536,11 +3556,11 @@ msgstr "" "Laisser vider pour désactiver le support des [a@http://wiki.phpmyadmin.net/" "pma/bookmark]signets[/a], suggéré : [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Table pour signets" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3548,33 +3568,33 @@ msgstr "" "Laisser vider pour désactiver les commentaires sur les colonnes et les types " "MIME; suggéré : [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Table pour informations sur les colonnes" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "(connexion au serveur MySQL)" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Utiliser le mode compression sur la connexion" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 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:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Type de connexion" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Mot de passe de l'utilisateur de contrôle" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3582,30 +3602,30 @@ 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Utilisateur de contrôle" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Comptage du nombre de tables en montrant la liste des bases de données" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Comptage des tables" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" "Laisser vider pour désactiver, suggéré : [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Table pour la fonctionnalité Concepteur" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3613,57 +3633,57 @@ msgstr "" "Voir [a@http://sf.net/support/tracker.php?aid=1849494]ce bogue phpMyAdmin[/" "a] et [a@http://bugs.mysql.com/19588]ce bogue MySQL[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Empêcher l'accès à INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Quelle extension PHP utiliser (prenez mysqli si possible)" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Extension PHP" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Masquer les bases dont le nom correspond à l'expression (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Masquer les bases de données" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "Laisser vider pour désactiver, suggéré : [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "Tables pour historique des requêtes SQL" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Le nom du serveur sur lequel MySQL est en exécution." -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Nom du serveur" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "URL pour quitter" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Essayer de se connecter sans mot de passe" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Connexion sans mot de passe" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3677,29 +3697,29 @@ msgstr "" "données en entrant leurs noms et en utilisant [kbd]*[/kbd] en fin de liste " "pour montrer le reste des noms de base de données en ordre alphabétique." -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Restreindre la liste des bases de données" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 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:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Mot de passe pour méthode config" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "Laisser vider pour désactiver, suggéré : [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "Table pour décrire les schémas en PDF" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3709,21 +3729,21 @@ msgstr "" "Voir [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Laisser vider pour " "désactiver. Suggéré : [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "Database name" msgstr "Nom de base de données" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Port" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3731,19 +3751,19 @@ msgstr "" "Laisser vider pour désactiver le support [a@http://wiki.phpmyadmin.net/pma/" "relation]relationnel[/a], suggéré : [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Table relationnelle" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "La commande SQL à utiliser pour acquérir la liste des bases de données" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "Commande SHOW DATABASES" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3751,42 +3771,42 @@ msgstr "" "Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] pour un exemple" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Nom de session pour méthode signon" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "URL pour connexion" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Interface de connexion socket" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Utiliser SSL pour la connexion au serveur MySQL" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Utiliser SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "Laisser vider pour désactiver, suggéré : [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "Table pour coordonnées du schéma en PDF" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3794,11 +3814,11 @@ msgstr "" "Sert à définir les colonnes descriptives, laisser vide pour désactiver; " "suggéré : [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "Table pour colonnes descriptives" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -3806,11 +3826,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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "Ajouter DROP DATABASE" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -3818,11 +3838,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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "Ajouter DROP TABLE" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -3830,21 +3850,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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "Ajouter DROP VIEW" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 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:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "Énoncés à suivre" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -3852,11 +3872,11 @@ msgstr "" "Laisser vider pour désactiver le suivi des changements SQL, valeur " "suggérée : [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "Table pour le suivi des changements SQL" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -3864,11 +3884,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:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "Création automatique de versions" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -3876,15 +3896,15 @@ msgstr "" "Laisser vider pour désactiver les préférences utilisateur, valeur suggérée : " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "Table de stockage des préférences utilisateur" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Utilisateur pour méthode config" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -3892,11 +3912,11 @@ msgstr "" "Désactiver si vous savez que vos tables pma_* sont à jour. Ceci contourne " "une vérification et améliore la performance" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Vérification détaillée" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -3904,19 +3924,19 @@ msgstr "" "Une description conviviale de ce serveur. Laisser vide pour utiliser à la " "place le nom du serveur." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Nom à afficher pour ce serveur" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Devrait-on afficher un bouton «Tout afficher»" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Permettre l'affichage de tous les enregistrements" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -3926,15 +3946,15 @@ msgstr "" "cependant on peut exécuter un changement de mot de passe manuellement avec " "la commande appropriée" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Afficher le dialogue de changement de mot de passe" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Afficher le formulaire de création de base de données" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -3942,19 +3962,19 @@ 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:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "Montrer les champs de type de données" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "En insertion/édition, montrer la colonne contenant les fonctions" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Montrer les fonctions" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -3962,45 +3982,45 @@ msgstr "" "Montre un lien vers le résultat de [a@http://php.net/manual/function.phpinfo." "php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Afficher un lien vers phpinfo()" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Afficher les informations détaillées sur le serveur MySQL" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Détermine si les requêtes générées par phpMyAdmin devraient être affichées" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Afficher les requêtes SQL" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Afficher les statistiques" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "Inverse l'affichage du nom et des commentaires" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" "Affiche le commentaire décrivant la base de données, au lieu de son nom" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4010,40 +4030,40 @@ msgstr "" "Si défini à [kbd]nested[/kbd], l'alias du nom de table ne sert qu'à " "subdiviser les tables selon $cfg['LeftFrameTableSeparator']" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Affiche le commentaire de table au lieu de son nom" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Affichage des commentaires de table en infobulle" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 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:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Saute les tables verrouillées" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "Requiert que le validateur SQL soit activé" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Mot de passe" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4051,11 +4071,11 @@ msgstr "" "[strong]Avis:[/strong] l'extension PHP SOAP ou le module PEAR SOAP doit être " "installé" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "Activer le validateur SQL" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4063,12 +4083,12 @@ msgstr "" "Si vous avez un code d'utilisateur, indiquez-le ici ([kbd]anonymous[/kbd] " "par défaut)" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Utilisateur" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4076,20 +4096,20 @@ msgstr "" "...dans le dialogue de création de base, si possible, sinon laisser le champ " "vide" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Suggérer un nom de nouvelle base de données" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 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:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "Avertissement Suhosin" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4097,11 +4117,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:475 +#: libraries/config/messages.inc.php:474 msgid "Textarea columns" msgstr "Taille horizontale pour une zone de texte" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4109,32 +4129,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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "Taille verticale pour une zone de texte" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 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:480 +#: libraries/config/messages.inc.php:479 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:481 +#: libraries/config/messages.inc.php:480 msgid "Default title" msgstr "Titre par défaut" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 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:484 +#: libraries/config/messages.inc.php:483 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:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4146,29 +4166,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:487 +#: libraries/config/messages.inc.php:486 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:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Répertoire de téléchargement" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 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:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Permet une recherche dans toute la base de données" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4176,11 +4196,11 @@ 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:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "Active le menu Développeur dans les réglages" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4190,15 +4210,15 @@ msgstr "" "libraries/import.lib.php pour le nombre d'énoncés qu'une requête peut " "comporter." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Détails pour les requêtes multi-énoncés" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Vérifier la présence d'une nouvelle version" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4206,7 +4226,7 @@ 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4227,72 +4247,72 @@ msgid "Signon authentication" msgstr "Mode d'authentification « signon »" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV via LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Rapide" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Personnalisé" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Options d'exportation des bases de données" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Données" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV pour MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Texte Open Document" @@ -4332,7 +4352,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Événements" @@ -4361,8 +4381,8 @@ msgid "Designer" msgstr "Concepteur" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilèges" @@ -4374,7 +4394,7 @@ msgstr "Procédures stockées" msgid "Return type" msgstr "Type retourné" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4408,18 +4428,18 @@ msgid "Details..." msgstr "Détails..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Modifier le mot de passe" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Aucun mot de passe" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Entrer à nouveau" @@ -4440,8 +4460,8 @@ msgstr "Créer une base de données" msgid "Create" msgstr "Créer" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Aucun privilège" @@ -4559,8 +4579,8 @@ msgid "Compression:" msgstr "Compression:" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Aucune" @@ -4716,7 +4736,7 @@ msgstr "Trier sur l'index" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4749,8 +4769,8 @@ msgstr "Montrer le contenu binaire" msgid "Show BLOB contents" msgstr "Montrer le contenu BLOB" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Cacher" @@ -4768,47 +4788,47 @@ msgstr "Exécuter la requête en signets" msgid "The row has been deleted" msgstr "L'enregistrement a été effacé" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Supprimer" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "dans la requête" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Affichage des enregistrements" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Modifier" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Version imprimable (avec textes complets)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Lien absent" @@ -5286,12 +5306,12 @@ msgid "Data dump options" msgstr "Options d'exportation" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Contenu de la table" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Structure de la table" @@ -5334,9 +5354,9 @@ msgstr "Afficher les types MIME" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Serveur" @@ -5502,40 +5522,40 @@ msgstr "" "d'être exportées et importées entre des serveurs de zones horaires " "différentes)" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procédures" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Fonctions" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Contraintes pour les tables exportées" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Contraintes pour la table" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "TYPES MIME POUR LA TABLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS POUR LA TABLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Déclencheurs" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Structure de la vue" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Doublure de structure pour la vue" @@ -5568,43 +5588,43 @@ msgstr "Résultat de la requête SQL" msgid "Generated by" msgstr "Généré par" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL n'a retourné aucun enregistrement." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Les structures suivanates ont été créées ou modifiées. Ici vous pouvez :" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Consulter le contenu d'une structure en cliquant sur son nom" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Modifiez l'un des réglages en cliquant le lien «Options» correspondant" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Modifier sa structure via le lien «Structure»" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Aller à la base de données" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "réglages" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Aller à la table" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Aller à la vue" @@ -5662,7 +5682,7 @@ msgstr "Nombre de colonnes invalide dans les données CSV à la ligne %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nom de la table" @@ -5740,7 +5760,7 @@ msgid "Charset" msgstr "Jeu de caractères" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binaire" @@ -6032,8 +6052,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Nom d'utilisateur" @@ -6052,7 +6072,7 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Valeur" @@ -6073,34 +6093,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Ajouter un utilisateur pour la réplication vers l'esclave" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Tout utilisateur" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Entrez une valeur" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Tout serveur" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Ce serveur" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Utiliser la table Host" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6338,11 +6358,11 @@ msgstr "Exécuter une ou des requêtes sur la base %s" msgid "Columns" msgstr "Colonnes" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Conserver cette requête dans les signets" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" @@ -6374,7 +6394,7 @@ msgstr "Voir uniquement" msgid "Location of the text file" msgstr "Emplacement du fichier texte" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "répertoire de transfert du serveur web" @@ -6533,21 +6553,21 @@ msgstr "" "Aucune description n'est disponible pour cette transformation.
Veuillez " "demander à son auteur, des détails sur %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Moteur de stockage" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Définition de PARTITION" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "Ajouter %s colonne(s)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." @@ -6756,8 +6776,8 @@ msgstr "Plus de paramètres" msgid "Protocol version" msgstr "Version du protocole" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Utilisateur" @@ -6794,7 +6814,7 @@ msgstr "Site officiel" msgid "Mailing lists" msgstr "Listes de courriel" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6806,7 +6826,7 @@ msgstr "" "serveur MySQL est donc ouvert aux intrusions, et vous devriez corriger ce " "problème de sécurité." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6816,7 +6836,7 @@ msgstr "" "option est incompatible avec phpMyAdmin et peut nuire au traitement des " "données !" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6827,7 +6847,7 @@ msgstr "" "phpMyAdmin est incapable de gérer correctement les caractères et il peut en " "résulter des problèmes." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6839,13 +6859,13 @@ msgstr "" "que la durée du cookie configurée dans phpMyAdmin; donc, votre session de " "travail expirera plus tôt." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Vous devez ajouter dans le fichier de configuration une phrase de passe " "secrète (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6855,7 +6875,7 @@ msgstr "" "présent dans votre répertoire phpMyAdmin. Vous devriez le supprimer quand " "vous aurez terminé la configuration de phpMyAdmin." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6864,7 +6884,7 @@ msgstr "" "Certaines fonctionnalités ayant trait aux tables reliées sont désactivées. " "Pour une analyse du problème, cliquez %sici%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6874,7 +6894,7 @@ msgstr "" "fonctions de phpMyAdmin seront manquantes. Par exemple le cadre de " "navigation ne sera pas mis à jour automatiquement." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6883,7 +6903,7 @@ msgstr "" "La version de votre bibliothèque MySQL (%s) diffère de la version de votre " "serveur MySQL (%s). Ceci peut occasionner un comportement imprévisible." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7056,20 +7076,16 @@ msgstr "" "Les paramètres seront importés depuis le stockage local de votre navigateur." #: prefs_manage.php:254 -#, fuzzy -#| msgid "Other core settings" msgid "You have no saved settings!" -msgstr "Autres réglages de base" +msgstr "Vous n'avez pas sauvegardé les paramètres!" #: prefs_manage.php:258 prefs_manage.php:312 msgid "This feature is not supported by your web browser" -msgstr "" +msgstr "Cette fonction n'est pas supportée par votre navigateur" #: prefs_manage.php:263 -#, fuzzy -#| msgid "Server configuration" msgid "Merge with current configuration" -msgstr "Configuration du serveur" +msgstr "Fusionner avec la configuration courante" #: prefs_manage.php:277 #, php-format @@ -7077,22 +7093,26 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" +"Vous pouvez régler d'autres paramètres en modifiant config.inc.php, par " +"exemple au moyen du %sscript d'installation%s." #: prefs_manage.php:302 msgid "Save to browser's storage" -msgstr "" +msgstr "Sauvegarder dans l'espace de stockage du navigateur" #: prefs_manage.php:306 msgid "Settings will be saved in your browser's local storage." msgstr "" +"Les paramètres seront sauvegardés dans l'espace de stockage de votre " +"navigateur." #: prefs_manage.php:308 msgid "Existing settings will be overwritten!" -msgstr "" +msgstr "Les réglages existants seront écrasés!" #: prefs_manage.php:323 msgid "You can reset all your settings and restore them to default values." -msgstr "" +msgstr "Vous pouvez ramener tous vos paramètres à leur valeur par défaut." #: querywindow.php:93 msgid "Import files" @@ -7108,10 +7128,8 @@ msgid "%s table not found or not set in %s" msgstr "La table %s est absente ou non définie dans %s" #: schema_export.php:45 -#, fuzzy -#| msgid "The %s table doesn't exist!" msgid "File doesn't exist" -msgstr "La table %s n'existe pas !" +msgstr "Le fichier n'existe pas" #: server_binlog.php:106 msgid "Select binary log to view" @@ -7218,123 +7236,123 @@ msgstr "Moteurs de stockage" msgid "View dump (schema) of databases" msgstr "Schéma et/ou contenu des bases de données" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Tous les privilèges sauf GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permission de modifier la structure des tables existantes." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permission de modifier et de supprimer des procédures stockées." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permission de créer des bases de données et des tables." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permission de créer des procédures stockées." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permission de créer des tables." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permission de créer des tables temporaires." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permission de créer des vues." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permission de détruire des données." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permission d'effacer des bases de données et des tables." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permission d'effacer des tables." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" "Permission de mettre en place des événements pour le programmateur " "d'événements" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permission d'exécuter des procédures stockées." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Permission d'importer et d'exporter des données à partir de / dans des " "fichiers." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permission d'ajouter des utilisateurs et des privilèges sans avoir besoin de " "recharger les privilèges." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permission de créer et d'effacer des index." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permission d'ajouter et de remplacer des données." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" "Permission de verrouiller des enregistrements dans le fil courant (unité " "d'exécution)." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limite du nombre de nouvelles connexions qu'un utilisateur peut démarrer, " "par heure." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limite du nombre de requêtes qu'un utilisateur peut envoyer au serveur, par " "heure." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7342,63 +7360,63 @@ msgstr "" "Limite du nombre de commandes changeant une table ou base de données, qu'un " "utilisateur peut exécuter, par heure." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limite le nombre de connexions simultanées autorisées pour un utilisateur." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permission de voir les processus de tous les utilisateurs" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Non effectif dans cette version de MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permission de recharger les réglages du serveur, et de vidanger la mémoire " "cache." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Permission de demander où sont les maîtres et les esclaves (système de " "duplication)." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nécessaire pour les esclaves (système de duplication)." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permission de lire des données." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Permission de voir la liste complète des noms de bases de données." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permission d'exécuter SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permission d'arrêter le serveur." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7409,154 +7427,154 @@ msgstr "" "administratif, par exemple les changements de variables globales ou la " "destruction de processus." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permission de créer et de supprimer des déclencheurs" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permission de changer des données." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Pas de privilèges." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Aucun" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Veuillez noter que les noms de privilèges sont exprimés en anglais" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Privilèges globaux" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limites de ressources" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Une valeur de 0 (zero) enlève la limite." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Information pour la connexion" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Conserver le mot de passe" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "Aucun utilisateur n'a été trouvé." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "L'utilisateur %s existe déjà !" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Vous avez modifié les privilèges pour %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Vous avez révoqué les privilèges pour %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Le mot de passe de %s a été changé." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Destruction de %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Aucun utilisateur n'a été choisi en vue de le détruire !" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Chargement des privilèges en cours" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Les utilisateurs sélectionnés ont été effacés." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Changer les privilèges" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Révoquer" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "N'importe quel" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Vue d'ensemble des utilisateurs" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr " «Grant »" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Ajouter un utilisateur" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Effacer les utilisateurs sélectionnés" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" "Supprimer les bases de données portant le même nom que les utilisateurs." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7569,49 +7587,49 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " "devriez %srecharger les privilèges%s avant de continuer." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Privilèges de colonnes" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Ajouter des privilèges sur cette base de données" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Préfixer avec \\ les passepartouts _ et % pour un usage littéral" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Ajouter des privilèges sur cette table" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Changement des informations de connexion / Copie d'utilisateur" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... conserver intact l'ancien utilisateur." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... supprimer l'ancien utilisateur." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7619,44 +7637,44 @@ msgstr "" " ... supprimer l'ancien utilisateur, puis recharger les privilèges au " "serveur." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Base de données pour cet utilisateur" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "Aucune" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" "Créer une base portant son nom et donner à cet utilisateur tous les " "privilèges sur cette base" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Donner les privilèges passepartout (utilisateur\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Donner tous les privilèges sur la base de données "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Utilisateurs ayant accès à "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "spécifique à cette base de données" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "passepartout" @@ -8694,7 +8712,7 @@ msgstr "Connexion à la source impossible" msgid "Could not connect to the target" msgstr "Connexion à la cible impossible" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8818,19 +8836,13 @@ msgid "Cannot load or save configuration" msgstr "Impossible de charger ou sauvegarder la configuration" #: setup/frames/index.inc.php:50 -#, fuzzy -#| msgid "" -#| "Please create web server writable folder [em]config[/em] in phpMyAdmin " -#| "top level directory as described in [a@../Documentation.html#setup_script]" -#| "documentation[/a]. Otherwise you will be only able to download or display " -#| "it." msgid "" "Please create web server writable folder [em]config[/em] in phpMyAdmin top " "level directory as described in [a@Documentation.html#setup_script]" "documentation[/a]. Otherwise you will be only able to download or display it." msgstr "" "Veuillez créer le répertoire [em]config[/em] accessible en écriture tel que " -"décrit sur [a@../Documentation.html#setup_script]documentation[/a]. Sinon " +"décrit dans la [a@Documentation.html#setup_script]documentation[/a]. Sinon " "vous ne pourrez que télécharger ou afficher la configuration." #: setup/frames/index.inc.php:57 @@ -8985,25 +8997,17 @@ msgid "No newer stable version is available" msgstr "Aucune version stable plus récente n'est disponible" #: setup/lib/index.lib.php:250 -#, fuzzy, php-format -#| msgid "" -#| "This [a@?page=form&formset=features#tab_Security]option[/a] should be " -#| "disabled as it allows attackers to bruteforce login to any MySQL server. " -#| "If you feel this is necessary, use [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#, php-format msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " "proxies list%s. However, IP-based protection may not be reliable if your IP " "belongs to an ISP where thousands of users, including you, are connected to." msgstr "" -"Cette [a@?page=form&formset=features#tab_Security]option[/a] ne devrait " -"pas être activée car elle permet à un attaquant de tenter de forcer l'entrée " -"sur tout serveur MySQL. Si vous en avez réellement besoin, utilisez [a@?" -"page=form&formset=features#tab_Security]la liste des serveurs " -"mandataires de confiance[/a]." +"Cette %soption%s ne devrait pas être activée car elle permet à un attaquant " +"de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez " +"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%" +"s." #: setup/lib/index.lib.php:252 msgid "" @@ -9016,18 +9020,13 @@ msgstr "" "encrypter les cookies, vous n'avez pas à vous en souvenir." #: setup/lib/index.lib.php:253 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Bzip2 compression " -#| "and decompression[/a] requires functions (%s) which are unavailable on " -#| "this system." +#, php-format msgid "" "%sBzip2 compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]La compression et " -"décompression Bzip2[/a] requièrent des fonctions (%s) non disponibles sur ce " -"serveur." +"La %scompression et décompression Bzip2%s requièrent des fonctions (%s) non " +"disponibles sur ce serveur." #: setup/lib/index.lib.php:255 msgid "" @@ -9038,24 +9037,18 @@ msgstr "" "utilisateurs." #: setup/lib/index.lib.php:256 -#, fuzzy, php-format -#| msgid "You should use SSL connections if your web server supports it" +#, php-format msgid "This %soption%s should be enabled if your web server supports it." -msgstr "Vous devriez utiliser des connexions SSL si votre serveur le permet." +msgstr "Cette %soption%s devrait être activée si votre serveur web le permet." #: setup/lib/index.lib.php:258 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]GZip compression and " -#| "decompression[/a] requires functions (%s) which are unavailable on this " -#| "system." +#, php-format msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]La compression et " -"décompression GZip[/a] requièrent des fonctions (%s) non disponibles sur ce " -"serveur." +"La %scompression et décompression GZip%s requièrent des fonctions (%s) non " +"disponibles sur ce serveur." #: setup/lib/index.lib.php:260 #, php-format @@ -9064,20 +9057,20 @@ msgid "" "invalidation if %ssession.gc_maxlifetime%s is lower than its value " "(currently %d)." msgstr "" +"Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 " +"secondes peut causer des interruptions de la session de travail si le " +"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %" +"d)." #: setup/lib/index.lib.php:262 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] " -#| "should be set to 1800 seconds (30 minutes) at most. Values larger than " -#| "1800 may pose a security risk such as impersonation." +#, php-format msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" -"[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] " -"devrait contenir une valeur d'au plus 1800 secondes (30 minutes). Une valeur " -"plus grande que 1800 pose un risque." +"Le paramètre %s]Login cookie validity%s devrait contenir une valeur d'au " +"plus 1800 secondes (30 minutes). Une valeur plus grande que 1800 pose un " +"risque." #: setup/lib/index.lib.php:264 #, php-format @@ -9085,36 +9078,25 @@ msgid "" "%sLogin cookie validity%s must be set to a value less or equal to %sLogin " "cookie store%s." msgstr "" +"Le paramètre %sLogin cookie validity%s doit avoir une valeur plus petite ou " +"égale au paramètre %sLogin cookie store%s." #: setup/lib/index.lib.php:266 -#, fuzzy, php-format -#| msgid "" -#| "If you feel this is necessary, use additional protection settings - [a@?" -#| "page=servers&mode=edit&id=%1$d#tab_Server_config]host " -#| "authentication[/a] settings and [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#, 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." msgstr "" -"Si vous l'estimez nécessaire, utilisez des réglages de protection - [a@?" -"page=servers&mode=edit&id=%1$d#tab_Server_config]authentification du " -"serveur[/a] et [a@?page=form&formset=features#tab_Security]serveurs " -"mandataires de confiance[/a]." +"Si vous l'estimez nécessaire, utilisez des réglages de protection - %" +"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " +"Cependant, la protection par adresse IP peut ne pas être fiable si votre IP " +"appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y " +"compris, sont connectés." #: setup/lib/index.lib.php:268 -#, fuzzy, php-format -#| msgid "" -#| "You set the [kbd]config[/kbd] authentication type and included username " -#| "and password for auto-login, which is not a desirable option for live " -#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#, php-format msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -9125,62 +9107,48 @@ msgstr "" "La méthode d'authentification [kbd]config[/kbd] permet une connexion " "automatique, ce qui n'est pas souhaitable dans un environnement réel. Toute " "personne qui connaît l'URL d'accès peut entrer dans votre phpMyAdmin. Il est " -"suggéré de régler votre [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]type d'authentification[/a] à [kbd]cookie[/kbd] ou [kbd]http[/" -"kbd]." +"suggéré de régler votre %stype d'authentification%s à [kbd]cookie[/kbd] ou " +"[kbd]http[/kbd]." #: setup/lib/index.lib.php:270 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] " -#| "requires functions (%s) which are unavailable on this system." +#, php-format msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]La compression Zip[/a] " -"requiert des fonctions (%s) non disponibles sur ce serveur." +"La %scompression Zip%s requiert des fonctions (%s) non disponibles sur ce " +"serveur." #: setup/lib/index.lib.php:272 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip decompression[/" -#| "a] requires functions (%s) which are unavailable on this system." +#, php-format msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]La décompression Zip[/" -"a] requiert des fonctions (%s) non disponibles sur ce serveur." +"La %sdécompression Zip%s requiert des fonctions (%s) non disponibles sur ce " +"serveur." #: setup/lib/index.lib.php:296 -#, fuzzy -#| msgid "You should use SSL connections if your web server supports it" msgid "You should use SSL connections if your web server supports it." msgstr "Vous devriez utiliser des connexions SSL si votre serveur le permet." #: setup/lib/index.lib.php:306 -#, fuzzy -#| msgid "You should use mysqli for performance reasons" msgid "You should use mysqli for performance reasons." -msgstr "Il est recommandé d'utiliser mysqli" +msgstr "Il est recommandé d'utiliser mysqli pour des raisons de performance." #: setup/lib/index.lib.php:331 msgid "You allow for connecting to the server without a password." msgstr "Vous permettez les connexions au serveur sans mot de passe." #: setup/lib/index.lib.php:351 -#, fuzzy -#| msgid "Key is too short, it should have at least 8 characters" msgid "Key is too short, it should have at least 8 characters." -msgstr "La clé doit avoir un minimum de 8 caractères" +msgstr "La clé doit avoir un minimum de 8 caractères." #: setup/lib/index.lib.php:358 -#, fuzzy -#| msgid "Key should contain letters, numbers [em]and[/em] special characters" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -"La clé devrait contenir des lettres, des nombres et des caractères spéciaux" +"La clé devrait contenir des lettres, des nombres [em]et[/em] des caractères " +"spéciaux." #: sql.php:569 tbl_replace.php:380 #, php-format @@ -9196,17 +9164,15 @@ msgid "Showing SQL query" msgstr "Affichage de la requête SQL" #: sql.php:591 -#, fuzzy -#| msgid "Validate SQL" msgid "Validated SQL" -msgstr "Valider SQL" +msgstr "SQL validé" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Il y a des problèmes avec les index de la table `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Intitulé" @@ -9215,191 +9181,182 @@ msgstr "Intitulé" msgid "Table %1$s has been altered successfully" msgstr "La table %1$s a été modifiée avec succès." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Fonction" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "" "Il est possible que cette colonne
ne soit pas éditable
en raison " "de sa longueur" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Supprimer les références au dépôt BLOB" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binaire - ne pas éditer" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Télécharger vers le dépôt BLOB" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Sauvegarder un nouvel enregistrement" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder un nouvel enregistrement (ignorer les erreurs)" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "et ensuite" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Insérer un nouvel enregistrement" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Modifier l'enregistrement suivant" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches " "pour aller n'importe où" -#: tbl_change.php:1109 -#, fuzzy, php-format -#| msgid "Restart insertion with %s rows" +#: tbl_change.php:1111 +#, php-format msgid "Continue insertion with %s rows" -msgstr "Recommencer l'insertion avec %s lignes" +msgstr "Continuer l'insertion avec %s lignes" #: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." msgid "Chart generated successfully." -msgstr "Les privilèges ont été rechargés." +msgstr "Le graphique a été généré." #: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" msgid "" "The result of this query can't be used for a chart. See [a@./Documentation." "html#faq6_29@Documentation]FAQ 6.29[/a]" msgstr "" -"Peut être approximatif. Voir [a@./Documentation.html#faq3_11@Documentation]" -"FAQ 3.11[/a]" +"Les résultats de cette requête ne peuvent servir à produire un graphique. " +"Voir le [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #: tbl_chart.php:90 msgid "Width" -msgstr "" +msgstr "Largeur" #: tbl_chart.php:94 msgid "Height" -msgstr "" +msgstr "Hauteur" #: tbl_chart.php:98 msgid "Title" -msgstr "" +msgstr "Titre" #: tbl_chart.php:103 msgid "X Axis label" -msgstr "" +msgstr "Étiquette pour l'axe des X" #: tbl_chart.php:107 msgid "Y Axis label" -msgstr "" +msgstr "Étiquette pour l'axe des Y" #: tbl_chart.php:112 msgid "Area margins" -msgstr "" +msgstr "Marges pour la zone" #: tbl_chart.php:122 msgid "Legend margins" -msgstr "" +msgstr "Marges pour la légende" #: tbl_chart.php:134 -#, fuzzy -#| msgid "Mar" msgid "Bar" -msgstr "Mars" +msgstr "Barre" #: tbl_chart.php:135 msgid "Line" -msgstr "" +msgstr "Ligne" #: tbl_chart.php:136 msgid "Radar" -msgstr "" +msgstr "Radar" #: tbl_chart.php:138 -#, fuzzy -#| msgid "PiB" msgid "Pie" -msgstr "Pio" +msgstr "Tarte" #: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" msgid "Bar type" -msgstr "Type de requête" +msgstr "Type de barre" #: tbl_chart.php:146 -#, fuzzy -#| msgid "Packed" msgid "Stacked" -msgstr "Compressé" +msgstr "En piles" #: tbl_chart.php:147 msgid "Multi" -msgstr "" +msgstr "Multi" #: tbl_chart.php:152 msgid "Continuous image" -msgstr "" +msgstr "Image continue" #: tbl_chart.php:155 msgid "" "For compatibility reasons the chart image is segmented by default, select " "this to draw the whole chart in one image." msgstr "" +"Pour des raisons de compatibilité le graphique est segmenté, sélectionnez " +"ceci pour afficher le graphique complet en une seule image." #: tbl_chart.php:166 msgid "" "When drawing a radar chart all values are normalized to a range [0..10]." msgstr "" +"Dans un graphique radar toutes les valeurs sont normalisées dans une plage " +"[0..10]." #: tbl_chart.php:173 msgid "" "Note that not every result table can be put to the chart. See FAQ 6.29" msgstr "" +"Toute table de résultats ne peut être affichée en graphique. Voir le FAQ 6.29" #: tbl_chart.php:181 msgid "Redraw" -msgstr "" +msgstr "Dessiner à nouveau" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "La table %s existe déjà !" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "La table %1$s a été créée." @@ -9518,20 +9475,16 @@ msgid "Flush the table (FLUSH)" msgstr "Recharger la table (FLUSH)" #: tbl_operations.php:642 -#, fuzzy -#| msgid "Delete tracking data for this table" msgid "Delete data or table" -msgstr "Supprimer les données de suivi de cette table" +msgstr "Supprimer les données ou la table" #: tbl_operations.php:657 msgid "Empty the table (TRUNCATE)" -msgstr "" +msgstr "Vider la table (TRUNCATE)" #: tbl_operations.php:677 -#, fuzzy -#| msgid "Go to database" msgid "Delete the table (DROP)" -msgstr "Aller à la base de données" +msgstr "Supprimer la table (DROP)" #: tbl_operations.php:698 msgid "Partition maintenance" @@ -9884,11 +9837,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Description" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Vous n'êtes pas autorisé à accéder à cette page" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Le profil a été modifié." @@ -9900,33 +9853,8 @@ msgstr "Nom de la vue" msgid "Rename view to" msgstr "Changer le nom de la vue pour" -#~| msgid "CSV" -#~ msgid "SVG" -#~ msgstr "SVG" +#~ msgid "Field navigation using Ctrl+Arrows" +#~ msgstr "Navigation des champs au moyen de Ctrl+flèches" -#~ msgid "DIA" -#~ msgstr "DIA" - -#~ msgid "VISIO" -#~ msgstr "VISIO" - -#~ msgid "EPS" -#~ msgstr "EPS" - -#~ msgid "" -#~ "This [a@?page=form&formset=features#tab_Security]option[/a] should be " -#~ "enabled if your web server supports it" -#~ msgstr "" -#~ "Cette [a@?page=form&formset=features#tab_Security]option[/a] doit " -#~ "être activée si votre serveur la supporte." - -#~ msgid "" -#~ "Enter each value in a separate field, enclosed in single quotes. If you " -#~ "ever need to put a backslash (\"\\\") or a single quote (\"'\") amongst " -#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a" -#~ "\\'b')." -#~ msgstr "" -#~ "Veuillez entrer les valeurs dans des champs séparés et les entourer " -#~ "d'apostrophes. Si vous devez entrer un caractère (\"\\\") ou une " -#~ "apostrophe (\"'\") parmi ces valeurs, faites-le précéder du caractère " -#~ "d'échappement, par exemple '\\\\xyz' or 'a\\'b')." +#~ msgid "Toggle Query Box Visibility" +#~ msgstr "Basculer la visibilité de la boîte de requêtes" diff --git a/po/gl.po b/po/gl.po index af436e6ca3..365876e13c 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Ver todos os rexistros" @@ -39,17 +39,20 @@ msgstr "" "actualizacións entre xanelas xa que así o pediu na configuración de " "seguranza do navegador." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "Procurar" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -125,7 +128,7 @@ msgid "Database comment: " msgstr "Comentario da base de datos: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Comentarios da táboa" @@ -136,7 +139,7 @@ msgstr "Comentarios da táboa" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -151,8 +154,8 @@ msgstr "Nomes das columnas" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -164,13 +167,13 @@ msgstr "Tipo" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nulo" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -189,8 +192,8 @@ msgid "Links to" msgstr "Vincúlase con" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -206,10 +209,10 @@ msgstr "Comentarios" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Non" @@ -225,10 +228,10 @@ msgstr "Non" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgstr "Seleccionar todo" msgid "Unselect All" msgstr "Non seleccionar nada" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Ese nome de base de datos non existe." @@ -269,81 +272,81 @@ msgstr "Mudóuselle o nome á base de datos %s para %s" msgid "Database %s has been copied to %s" msgstr "Copiuse a base de datos %s para %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Mudar o nome da base de datos para" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Orde" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Mudar o nome da base de datos para" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Eliminouse a base de datos %s." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ir á base de datos" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Copiar a base de datos para" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Só a estrutura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estrutura e datos" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Só os datos" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREAR UNHA BASE DE DATOS antes de copiar" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Engadir %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Engadir limitacións" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Pasar á base de datos copiada" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Orde alfabética" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -355,24 +358,24 @@ msgstr "" "Desactivouse a funcionalidade adicional para o traballo con táboas " "vinculadas. Para saber o por que, prema %saquí%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Esquema relacional" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Táboa" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -383,33 +386,33 @@ msgstr "Fileiras" msgid "Size" msgstr "Tamaño" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "en uso" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Creación" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Actualización máis recente" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Comprobación máis recente" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -418,7 +421,7 @@ msgstr[0] "%s táboa(s)" msgstr[1] "%s táboa(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -448,7 +451,7 @@ msgid "Descending" msgstr "Descendente" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Mostrar" @@ -469,8 +472,8 @@ msgid "Del" msgstr "Eliminar" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "ou" @@ -543,17 +546,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s ocorrencias(s) dentro da táboa %s" msgstr[1] "%s ocorrencias(s) dentro da táboa %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Visualizar" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -598,69 +603,30 @@ msgstr "Dentro da(s) táboa(s):" msgid "Inside column:" msgstr "No campo:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Inserir" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Estrutura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Eliminar" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Borrar" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Vaciouse a táboa %s" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Deixouse a vista %s" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Eliminouse a táboa %s" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "O seguemento está activado." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "O seguemento non está activado." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -669,87 +635,111 @@ msgstr "" "Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%" "s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Vista" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replicación" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Suma" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Todos os marcados" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Marcalos todos" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Quitarlles as marcas a todos" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Exceso na comprobación" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exportar" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Borrar" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Eliminar" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Verificar a táboa" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimizar a táboa" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Reparar a táboa" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizar a táboa" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dicionario de datos" @@ -757,13 +747,13 @@ msgstr "Dicionario de datos" msgid "Tracked tables" msgstr "Táboas seguidas" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -789,8 +779,8 @@ msgstr "Estado" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Acción" @@ -833,12 +823,12 @@ msgstr "Seguir a táboa" msgid "Database Log" msgstr "Rexistro de actividade da base de datos" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -916,7 +906,7 @@ msgstr "Eliminouse o marcador." msgid "Showing bookmark" msgstr "A mostrar o marcador" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Creouse o marcador %s" @@ -944,7 +934,7 @@ msgstr "" "non ser que lle incrementen os limites de tempo de php." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Voltar" @@ -1026,11 +1016,11 @@ msgstr "O nome do servidor está vacío!" msgid "The user name is empty!" msgstr "O nome do usuario está vacío!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "O contrasinal está vacío!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Os contrasinais non son os mesmos." @@ -1137,114 +1127,122 @@ msgid "Searching" msgstr "Procurar" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Caixa de Procuras SQL" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Caixa de Procuras SQL" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Motores" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Eliminouse a relación" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Engadiuse unha relación cunha CHAVE EXTERNA" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Engadiuse a relación interna" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Erro: non se engadiu a relación." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Erro: xa existe unha relación." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Houbo un erro ao gardar as coordenadas para Deseñador." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Características xerais das relacións" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Desactivado" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Seleccionar a chave referida" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Escolla a chave primaria ou unha chave única" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolla o campo que quere que se mostre" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Xerar" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Trocar o contrasinal" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Lu" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Doar" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1252,96 +1250,96 @@ msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binario " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Maio" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Xuño" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Xullo" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1349,178 +1347,178 @@ msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dec" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Do" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lu" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ma" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ve" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Xo" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "en uso" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1598,9 +1596,9 @@ msgid "Comment" msgstr "Comentario" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Modificar" @@ -1623,15 +1621,15 @@ msgstr "" "Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase " "eliminar un deles" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Bases de datos" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Houbo un erro" @@ -1885,6 +1883,32 @@ msgstr "Descargar o ficheiro" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Inserir" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Estrutura" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1955,7 +1979,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "O nome de servidor non é válido para o servidor %1$s. Revise a configuración." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Servidor" @@ -2013,7 +2037,7 @@ msgstr "Mensaxes do MySQL: " msgid "Failed to connect to SQL validator!" msgstr "Non se puido conectar co servidor de MySQL" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Explicar SQL" @@ -2025,11 +2049,11 @@ msgstr "Saltar a explicacion de SQL" msgid "Without PHP Code" msgstr "sen código PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Refrescar" @@ -2038,7 +2062,7 @@ msgstr "Refrescar" msgid "Skip Validate SQL" msgstr "Omitir a validacion de" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validar o SQL" @@ -2138,7 +2162,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2162,14 +2186,14 @@ msgid "Select from the web server upload directory %s:" msgstr "directorio de recepción do servidor web" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Non se pode acceder ao directorio que designou para os envíos" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "estrutura" @@ -2300,7 +2324,7 @@ msgid "Set value: %s" msgstr "Poñer como valor: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Volver ao valor por omisión" @@ -2310,15 +2334,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Gardar" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Reiniciar" @@ -2461,116 +2485,112 @@ msgid "Confirm DROP queries" msgstr "Confirmar as procuras DROP" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Opcións de exhibición das bases de datos" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "O separador que aparece cando se entra nunha base de datos" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Separador por omisión das bases de datos" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "O separador que aparece cando se entra nun servidor" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Separador por omisión dos servidores" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "O separador que aparece cando se entra nunha táboa" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Separador por omisión das táboas" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Mostrar o contido binario como HEX" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Mostrar o contido binario como HEX" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" "Mostrar a listaxe das bases de datos como listaxe no canto de nun menú " "despregábel" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Mostrar as bases de datos nunha listaxe" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Mostrar os servidores nunha listaxe" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Modificar a fileira seguinte" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Mostrar as características" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Ignorar os erros" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Ignorar os erros" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2578,32 +2598,32 @@ 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:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Tempo máximo de execución" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Enviar (gravar nun ficheiro)
" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Conxunto de caracteres do ficheiro" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compresión" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2613,70 +2633,70 @@ msgstr "Compresión" msgid "Put columns names in the first row" msgstr "Pór os nomes dos campos na primeira fileira" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Os campos delimítanse con" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Os campos escápanse con" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Substituír NULL por " -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Eliminar os caracteres CRLF dentro dos campos" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "As liñas rematan por" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "As liñas rematan por" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edición mediante MS-Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Modelo de nome das bases de datos" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Modelo de nome dos servidores" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Modelo de nome dos ficheiros" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2684,120 +2704,120 @@ msgstr "Modelo de nome dos ficheiros" msgid "Dump table" msgstr "%s táboa(s)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Incluír o título da táboa" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Título da táboa" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Título da táboa continuado" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Chave da etiqueta" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Tipo MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relacións" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Tipo de exportación" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Gravar no servidor" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Eliminar o(s) ficheiro(s) xa existente(s)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Lembrar o modelo do nome de ficheiro" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Protexer os nomes das táboas e dos campos con \" ` \"" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Modo de compatiblidade SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Datas de creación/actualización/comprobación" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Usar insercións demoradas" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Desactivar as comprobacións de chaves exteriores" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal para BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Usar insercións ignoradas" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Lonxitude máxima da procura creada" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Exportar as táboas" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Incluír a exportación nunha transacción" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy #| msgid "Export contents" msgid "Export time in UTC" msgstr "Exportar o contido" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" "Obrigar a que se empregue unha conexión segura mentres se empregue o " "phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Obrigar a conectarse con SSL" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2805,192 +2825,192 @@ 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Ordenación das chaves alleas" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Límite das chaves alleas" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Modo de navegación" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Personalizar o modo de navegación" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Personalizar as opcións de exportación por omisión" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Modo de edición" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Personalizar o modo de edición" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Exportar o predeterminado" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Personalizar as opcións de exportación por omisión" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funcionalidades" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Xerar" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importar" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Opcións de importación por omisión" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Personalizar as opcións frecuentes de importación por omisión" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Importación / exportación" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" "Designe os directorios de importación e exportación e as opcións de " "compresión" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Opcións de exhibición das bases de datos" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Moldura de navegación" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Personalizar a aparencia da moldura de navegación" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servidores" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Opcións de exhibición dos servidores" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Táboas" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Opcións de exhibición das táboas" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Moldura principal" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Texto Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Outras opcións principais" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Configuracións que non cadraban noutra parte" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Número de páxina:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Personalizar as opcións da xanela de procuras" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Seguranza" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2998,27 +3018,27 @@ msgstr "" "Lembre que o phpMyAdmin é simplemente unha interface de usuario e que as " "súas funcionalidades non se limitan ao MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Configuración básica" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Configuración do servidor" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3026,17 +3046,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:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Introduza os parámetros da conexión ao servidor" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Ficheiro de configuración" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3051,56 +3071,56 @@ msgstr "" "[a@../Documentation.html#linked-tables]infraestrutura de táboas ligadas[/a] " "na documentación" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Personalizar as opcións de exportación" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Personalizar as opcións de importación por omisión" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Personalizar a moldura de navegación" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Personalizar a moldura principal" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Solicitudes SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "Caixa de Procuras SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Personalizar as ligazóns que aparecen nas caixas de Procura SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "Solicitudes SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Historial de SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3108,49 +3128,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Inicio" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Personalizar a páxina de inicio" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Separadores" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Escolla como quere que funcionen os separadores" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Use campo de texto" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Personalizar as opcións de exportación" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texto para Texy!" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Advertencia" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3158,15 +3178,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:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Parámetros extra para iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3174,11 +3194,11 @@ msgstr "" "Se estiver activado, o phpMyAdmin continúa a calcular as procuras de " "afirmacións múltiplas mesmo se unha destas procuras fallase" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignorar os erros de afirmacións múltiplas" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3188,21 +3208,21 @@ 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:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Importación parcial: permitir interromper" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignorar as fileiras duplicadas" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Substituír os datos da táboa polos do ficheiro" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3210,98 +3230,98 @@ 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Formato do ficheiro importado" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Utilice a palabra chave LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Nomes das columnas na primeira fileira" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Non importar as fileiras baleiras" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Importar as moedas ($5.00 a 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importar as porcentaxes como decimais correctos (12.00% a .12)" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Número de rexistros (procuras) que se ignoran desde o comezo" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Importación parcial: ignorar as procuras" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non empregar AUTO_INCREMENT cos valores cero" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Cantas fileiras se poden inserir dunha volta" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Número de fileiras inseridas" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Destino da icona de acceso rápido" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Mostrar o logotipo na moldura esquerda" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Mostrar o logotipo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Mostrar a escolla de servidor na parte superior da moldura esquerda" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Mostrar a selección de servidores" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Mostrar as bases de datos nunha árbore" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 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:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Separador da árbores das bases de datos" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3309,39 +3329,39 @@ msgstr "" "Só na versión lixeira; mostrar as bases de datos nunha árbore (determinada " "polo separador que se defina embaixo)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Mostrar as bases de datos nunha árbore" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Desactive isto se quere ver todas as bases de datos ao mesmo tempo" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Empregar a versión lixeira" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Profundidade máxima das táboas" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 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:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Separador da árbore de táboas" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "URL da ligazón ao logotipo" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3349,27 +3369,27 @@ msgstr "" "Abrir a páxina ligada na xanela principal ([kbd]principal[/kbd]) ou nunha " "nova ([kbd]nova[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Destino da ligazón do logotipo" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Resaltar o servidor que estea por baixo do cursor do rato" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Activar o resaltado" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Empregar separadores con menos carga gráfica" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Separadores lixeiros" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" @@ -3377,11 +3397,11 @@ msgid "" msgstr "" "Número máximo de caracteres empregados cando se mostra unha procura SQL" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3392,11 +3412,11 @@ msgstr "" "FALSO fai que sexa máis doado esquecer saír dos outros servidores cando se " "está conectado a varios servidores." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Eliminar todas as cookies ao saír" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3404,11 +3424,11 @@ msgstr "" "Definir se se debe lembrar ou non o rexisto previo no modo de autenticación " "mediante cookies" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Lembrar o nome de usuario" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3420,55 +3440,55 @@ 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:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Almacenar as cookies de rexistro" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Validez das cookies de rexistro" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "Número máximo de caracteres empregados cando se mostra unha procura SQL" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Lonxitude máxima de SQL que se mostra" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Número máximo de bases de datos que aparecen na moldura da esquerda e na " "listaxe de bases de datos" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Bases de datos máximas" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3478,29 +3498,29 @@ msgstr "" "resultados. Se o conxunto de resultados contén máis fileiras, aparecen as " "ligazóns "Anterior" and "Seguinte"." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Número máximo de fileiras que se mostran" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 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:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Táboas máximas" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3508,49 +3528,49 @@ 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Límite da memoria" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Mostrar/Agochar o menú esquerdo" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Ordenar a táboa por" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Empregar só iconas, só texto ou ambos os dous" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Barra de navegación por iconas" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Empregar un búfer para a saída de GZip para atinxir unha maior velocidade " "nas transferencias HTTP" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "Búfer para a saída de GZip" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3562,46 +3582,46 @@ 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Ordenación por omisión" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Empregar conexións persistentes coas bases de datos MySQL" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Conexións persistentes" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Operacións de tábocas con iconas" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Impedir que se poidan editar os ficheiros BLOB e BINARY" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Protexer os campos binarios" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3615,121 +3635,121 @@ msgstr "" "Se estiver desactivado, utiliza rutinas JS para mostrar o historial de " "procuras (que se perde cando se fecha a xanela)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Historial de procuras permanente" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Cantas procuras se gardan no historial" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Lonxitude do historial de procuras" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "O separador que aparece cando se entra nunha xanela de procuras" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Separador por omisión das xanelas de procuras" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" "Seleccione as funcións que quere empregar para a conversión dos conxuntos de " "caracteres" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Motor de recodificación" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Reparar os fíos" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 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:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Directorio de gardado" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Déixeo en branco se non o vai empregar" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Orde de autenticación do servidor" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Déixeo en branco para o predefinido" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Regras de autenticación do servidor" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Permitir rexistrarse sen contrasinal" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Permitir o rexistro de root" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3739,19 +3759,19 @@ msgstr "" "de hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "Ficheiro de configuración SweKey" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Método de autenticación que se quere empregar" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3759,11 +3779,11 @@ msgstr "" "Déixeo en branco se non quere a funcionalidade de [a@http://wiki.phpmyadmin." "net/pma/bookmark]marcadores[/a]; por omisión: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Táboa de marcadores" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3771,31 +3791,31 @@ msgstr "" "Déixeo en branco se non quere comentarios/tipos mime das columnas; por " "omisión: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Táboa de información das columnas" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Comprimir a conexión ao servidor de MySQL" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Comprimir a conexión" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Como ligar co servidor; déixeo como tc se non está segura/a" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Tipo de conexión" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Contrasinal do usuario de control" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3804,19 +3824,19 @@ msgstr "" "información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" "[/a]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Usuario de control" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Contar as táboas cando se mostre a listaxe de bases de datos" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Contar as táboas" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3824,11 +3844,11 @@ msgstr "" "Déixeo en branco se non quere empregar Designer; por omisión: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Táboa de Designer" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3837,28 +3857,28 @@ msgstr "" "Seguidor de erros dePMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do " "MySQL[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desactivar o uso de INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "O engadido de PHP que quere empregar; debería empregar mysqli se se admite" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Engadido PHP que empregar" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Acochar as bases de datos que coincidan cunha expresión regular (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Acochar as bases de datos" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3866,31 +3886,31 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "Táboa do historial de procuras SQL query" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 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:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Nome do servidor" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "URL de desconexión" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Tentar conectarse sen contrasinal" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Conectarse sen contrasinal" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3906,30 +3926,30 @@ msgstr "" "empregar os caracteres en si, isto é, empregue 'aminha\\_bd' no canto de " "'amiña_bd'" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Mostrar só as bases de datos listadas" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Déixeo en branco se non vai empregar config auth" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Contrasinal para config auth" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_pdf_pages[/" "kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF schema: táboa de páxinas" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3940,23 +3960,23 @@ msgstr "" "completa. Déixeo en branco se non lle interesan. Por omisión: [kbd]phpmyadmin" "[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nome da base de datos" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Porto do servidor" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3964,19 +3984,19 @@ msgstr "" "Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/relation]" "ligazóns de relación[/a]; por omisión: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Táboa de relacións" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "Comando SQL para obter as bases de datos dispoñíbeis" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "Mostrar o orde SHOW DATABASES" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3984,45 +4004,45 @@ 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:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Nome de sesión de rexistro de entrada" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "URL de rexistro de entrada" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Socket polo que está a escoitar o servidor de MySQL; déixeo en branco para " "deixar o predefinido" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Socket do servidor" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "Comprimir a conexión ao servidor de MySQL" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Empregar SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_table_coords" "[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF schema: coordenadas de táboa" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4034,53 +4054,53 @@ msgstr "" "Táboa para describir os campos a exhibir; déixeo en branco se non a quere; " "por omisión: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Táboa de campos a exhibir" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Informacións" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4092,25 +4112,25 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "Táboa do historial de procuras SQL query" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Modo de recuperación automática" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4122,15 +4142,15 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Usuario para config auth" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4138,11 +4158,11 @@ msgstr "" "Desactíveo se sabe que as táboas pma_* tables están actualizadas. Isto evita " "as comprobacións de compatibilidade e, polo tanto, mellora o desempeño" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Comprobación estensa" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4150,11 +4170,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:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Nome longo deste servidor" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4163,11 +4183,11 @@ msgstr "" "Se se lle debería mostrar un botón "mostrar todos (rexistros)" ao " "usuario" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Permitir que se mostren todas as fileiras" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4178,35 +4198,35 @@ msgstr "" "configuración; isto non limita a capacidade de executar a mesmo orde " "directamente" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Mostrar o formulario para mudar de contrasinal" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Mostrar o formulario para crear bases de datos" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Mostrar as táboas abertas" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 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:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Mostrar os campos de función" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4214,33 +4234,33 @@ msgstr "" "Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Mostrar a ligazón a phpinfo()" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Mostrar información detallada do servidor de MySQL" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Define se se deben mostrar as procuras SQL xeradas polo phpMyAdmin" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Mostrar as procuras SQL" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Permitir que se mostren as estatísticas das bases de datos e das táboas (p." "ex. o uso do espazo)" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Mostrar as estatísticas" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4248,11 +4268,11 @@ msgstr "" "Se as mensaxes estiveren activadas e existir un comentario da base de datos, " "isto substitúe o comentario polo nome real" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Mostrar o comentario da base de datos no canto do seu nome" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4264,61 +4284,61 @@ msgstr "" "['LeftFrameTableSeparator'], polo que só o cartafol se chama como o alcume; " "o nome mesmo da táboa fica sen cambiar" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Mostrar o comentario da táboa no canto do seu nome" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Mostrar os comentarios das táboas nas mensaxes" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Marcar as táboas empregadas e permitir que se mostren as bases de datos con " "táboas bloqueadas" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Ignorar as táboas bloqueadas" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Contrasinal" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Nome de usuario" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4326,65 +4346,65 @@ msgstr "" "Suxerir un nome para as bases de datos no formulario "Crear base de " "datos" (de ser posíbel) ou manter o campo de texto baleiro" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Suxerir un nome novo para as bases de datos" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "Columnas de área de texto de CHAR" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "Fileiras de área de texto de CHAR" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Separador por omisión das táboas" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4396,38 +4416,38 @@ 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:487 +#: libraries/config/messages.inc.php:486 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:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Directorio de envíos" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Permitir procurar na base de datos completa" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Empregar procuras na base de datos" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4437,15 +4457,15 @@ msgstr "" "múltiplas. Vexa libraries/import.lib.php para o que está predeterminado para " "cantas procuras pode conter unha afirmación." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Afirmacións múltiplas estensas" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Comprobar cal é a última versión" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4453,7 +4473,7 @@ 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4482,74 +4502,74 @@ msgid "Signon authentication" msgstr "Orde de autenticación do servidor" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV utilizando LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Libro de traballo XLS do Excel 97-2003" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Libro de traballo XLSX do Excel 2007" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Folla de cálculo Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Cor personalizada" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcións de exportación da base de datos" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Datos" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV (para datos de MS Excel)" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Texto Open Document" @@ -4595,7 +4615,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Acontecementos" @@ -4624,8 +4644,8 @@ msgid "Designer" msgstr "Deseñador" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilexios" @@ -4637,7 +4657,7 @@ msgstr "Rutinas" msgid "Return type" msgstr "Tipo de retorno" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4668,18 +4688,18 @@ msgid "Details..." msgstr "Detalles..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Trocar o contrasinal" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Sen contrasinal" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Reescribir" @@ -4702,8 +4722,8 @@ msgstr "Crear unha base de datos nova" msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Sen privilexios" @@ -4850,8 +4870,8 @@ msgid "Compression:" msgstr "Compresión" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Ningunha" @@ -5032,7 +5052,7 @@ msgstr "Ordenar pola chave" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5067,8 +5087,8 @@ msgstr "Mostrar os contidos binarios" msgid "Show BLOB contents" msgstr "Mostrar os contidos BLOB" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Agochar" @@ -5086,49 +5106,49 @@ msgstr "Efectuar a procura gardada" msgid "The row has been deleted" msgstr "Eliminouse o rexistro" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Matar (kill)" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "a procurar" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "A mostrar rexistros " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "a pesquisa levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Mudar" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operacións de resultados da procura" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Vista previa da impresión (con textos completos)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar o esquema PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Non se atopou o vínculo" @@ -5612,12 +5632,12 @@ msgid "Data dump options" msgstr "Opcións de exhibición das bases de datos" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "A extraer datos da táboa" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Estrutura da táboa" @@ -5670,9 +5690,9 @@ msgstr "Tipos MIME dispoñíbeis" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Servidor" @@ -5818,40 +5838,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedementos" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funcións" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Limitacións para os volcados das táboas" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Limitacións para a táboa" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA A TÁBOA" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELACIÓNS PARA A TÁBOA" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Lanza" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Estrutura para a vista" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Estrutura existente para a vista" @@ -5886,43 +5906,43 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Xerado por" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Ver o contido dunha estrutura premendo o seu nome" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Mude calqueraa destas opcións premendo a ligazón \"Opcións\" correspondente" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\"" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Ir á base de datos" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "opcións" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Ir á táboa" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Ir á vista" @@ -5974,7 +5994,7 @@ msgstr "A contaxe de campos non é válida na entrada de CSV na liña %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nome da táboa" @@ -6061,7 +6081,7 @@ msgid "Charset" msgstr "Conxunto de caracteres" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Binario " @@ -6349,8 +6369,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Nome do usuario" @@ -6369,7 +6389,7 @@ msgid "Variable" msgstr "Variábel" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Valor" @@ -6390,34 +6410,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Engadir un usuario de replicación de escravos" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Calquera usuario" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Use campo de texto" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Calquera servidor" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Este servidor" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Usar a táboa de Host" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6673,11 +6693,11 @@ msgstr "Efectuar unha procura SQL na base de datos %s" msgid "Columns" msgstr "Nomes das columnas" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Gardar esta procura de SQL" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" @@ -6709,7 +6729,7 @@ msgstr "Só visualizar" msgid "Location of the text file" msgstr "Localización do arquivo de texto" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "directorio de recepción do servidor web" @@ -6878,22 +6898,22 @@ msgstr "" "Non existe descrición desta transformación.
Pregúntelle ao autor que é " "o que fai %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Motor de almacenamento" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Definición da PARTICIÓN" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Engadir columna(s)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7147,8 +7167,8 @@ msgstr "opcións" msgid "Protocol version" msgstr "Versión do protocolo" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Usuario" @@ -7185,7 +7205,7 @@ msgstr "Páxina Oficial do phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7198,7 +7218,7 @@ msgstr "" "configuración, está aberto a intrusións e habería que mirar de solucionar " "este problema de seguranza." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7207,7 +7227,7 @@ msgstr "" "Ten activada mbstring.func_overload na configuración do PHP. Esta opción é " "incompatíbel co phpMyAdmin e podería ocasionar danos nos datos" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7217,7 +7237,7 @@ msgstr "" "de caracteres multibyte. Sen o engadido mbstring, o phpMyAdmin é incapaz de " "partir cadeas correctamente e pode provocar resultados inesperados." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7229,13 +7249,13 @@ msgstr "" "das cookies que se configurou en phpMyAdmin; por causa disto, o rexistro " "caducará antes do que está configurado en phpMyAdmin." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "O ficheiro de configuración agora necesita un contrasinal secreto " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7245,7 +7265,7 @@ msgstr "" "existe aínda no directorio de phpMyAdmin. Deberíao eliminar unha vez " "finalice a configuración do phpMyAdmin." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7254,14 +7274,14 @@ msgstr "" "Desactivouse a funcionalidade adicional para o traballo con táboas " "vinculadas. Para saber o por que, prema %saquí%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7270,7 +7290,7 @@ msgstr "" "A versión %s da súa libraría de PHP MySQL difire da versión %s do seu " "servidor de MySQL. Isto pode ocasionar un comportamento impredicíbel." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7622,112 +7642,112 @@ msgstr "Motores de almacenamento" msgid "View dump (schema) of databases" msgstr "Ver o volcado das bases de datos" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura das táboas xa existentes." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar e eliminar rutinas armacenadas." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permite crear bases de datos e táboas novas." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permite crear rutinas almacenadas." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permite crear táboas novas." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permite crear táboas temporais." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar e mudar o nome das contas de usuario." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permite crear vistas novas." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permite eliminar datos." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos e táboas." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permite eliminar táboas." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurar acontecementos para o programador de acontecementos" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permite executar rutinas almacenadas." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar e exportar datos desde e para ficheiros." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite engadir usuarios e privilexios sen recargar as táboas de privilexios." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permite crear e eliminar índices." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituír datos." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permite bloquear táboas do fío en uso" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita o número de conexións novas por hora que pode abrir un usuario." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limita o número de procuras por hora que pode enviar un usuario." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7735,58 +7755,58 @@ msgstr "" "Limita o número de ordes que modifiquen unha táboa ou base de datos por hora " "que pode executar un usuario." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita o número de conexións simultáneas que pode ter o usuario." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permite ver procesos de todos os usuarios" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Non funciona nesta versión do MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Permite recargar a configuración do servidor e limpar a súa caché." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite que o usuario pregunte onde están os escravos e os masters." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Necesario para os escravos de replicación." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permite gravar datos." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Permite acceder á listaxe completa de bases de datos" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite realizar consultas SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permite apagar o servidor." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7796,159 +7816,159 @@ msgstr "" "maioría das operación administrativas, como configurar as variábeis globais " "ou matar os fíos doutros usuarios." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permite crear e eliminar os disparadores" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permite modificar datos." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Sen privilexios." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ningunha" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Privilexios propios de táboa" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: os nomes de privilexios do MySQL están en inglés" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Privilexios globais" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Privilexios propios de base de datos" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administración" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limites de recursos" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Información sobre o acceso (login)" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Non mude o contrasinal" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Non se achou ningún usuario." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Xa existe o usuario %s" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Engadiuse o usuario." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Acaba de actualizar os privilexios de %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Retiroulle os privilexios a %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Modificouse sen problemas o contrasinal de %s." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "A eliminar %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Non se seleccionaron utilizadores para eliminar!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "A recargar os privilexios" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Modificar privilexios" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Revogar" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Calquera" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Vista xeral dos usuarios" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Engadir un usuario novo" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Eliminar os usuarios seleccionados" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Retirarlles todos os privilexios activos aos usuarios e eliminalos a " "continuación." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7961,51 +7981,51 @@ msgstr "" "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Non se atopou o usuario seleccionado na táboa de privilexios." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Privilexios propios de columna" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Engadir privilexios para esta base de datos" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Os caracteres comodín _ e % deberíanse escapar con \\ para podelos usar " "literalmente" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Engadir privilexios para a esta táboa" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Modificar a información de acceso (login) / Copiar o utilizador" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Crear un utilizador novo cos mesmos privilexios e..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... manter o anterior." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... eliminar o anterior das táboas de utilizadores." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... retirarlle todos os privilexios activos ao anterior e eliminalo despois." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -8013,44 +8033,44 @@ msgstr "" " ... eliminar o anterior das táboas de utilizadores e recargar os " "privilexios despois." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Base de datos para o usuario" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ningunha" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Crear unha base de datos co mesmo nome e conceder todos os privilexios" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilexios sobre a base de datos "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios que teñen acceso a "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "específico da base de datos" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "comodín" @@ -9101,7 +9121,7 @@ msgstr "Non foi posíbel conectar coa orixe" msgid "Could not connect to the target" msgstr "Non foi posíbel conectar co destino" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9625,12 +9645,12 @@ msgstr "Mostrar procura SQL" msgid "Validated SQL" msgstr "Validar o SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Nome" @@ -9639,74 +9659,74 @@ msgstr "Nome" msgid "Table %1$s has been altered successfully" msgstr "Alterouse a táboa %1$s sen problemas" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Visualizar valores alleos" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Función" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Por causa da sua lonxitude,
este campo pode non ser editábel " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Eliminar a referencia ao repositorio BLOB" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Binario - non editar " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Enviar ao repositorio de BLOB" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Mostrar procura SQL" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "e despois" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Voltar" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Voltar para esta páxina" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL " "combinada cunha flecha para moverse a calquera sitio" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9817,12 +9837,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Xa existe a táboa %s!!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Creouse a táboa %1$s." @@ -10319,11 +10339,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Descrición" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Non ten direitos suficientes para estar aquí agora!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Actualizouse o perfil." diff --git a/po/he.po b/po/he.po index 7e1949fbcc..77d7a6e797 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hebrew \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "ראיית הכל" @@ -34,17 +34,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "חיפוש" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -59,14 +62,14 @@ msgstr "חיפוש" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -118,7 +121,7 @@ msgid "Database comment: " msgstr "הערה על מאגר הנתונים: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "הערות טבלה" @@ -129,7 +132,7 @@ msgstr "הערות טבלה" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -144,8 +147,8 @@ msgstr "שמות עמודה" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -157,13 +160,13 @@ msgstr "סוג" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -182,8 +185,8 @@ msgid "Links to" msgstr "קישורים אל" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -199,10 +202,10 @@ msgstr "הערות" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "לא" @@ -218,10 +221,10 @@ msgstr "לא" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -248,7 +251,7 @@ msgstr "בחירת הכל" msgid "Unselect All" msgstr "בטל בחירת הכל" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "שם מאגר הנתונים ריק!" @@ -262,80 +265,80 @@ msgstr "מאגר נתונים %s שונה אל %s" msgid "Database %s has been copied to %s" msgstr "מאגר נתונים %s הועתק אל %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "שינוי שם מאגר נתונים אל" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "פקודה" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "שינוי שם מאגר נתונים אל" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "מסד הנתונים %s נמחק." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "אין מאגרי נתונים" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "העתקת מאגר נתונים אל" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "מבנה בלבד" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "מבנה ומידע" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "מידע בלבד" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE לפני העתקה" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "הוספת הגבלות" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "מעבר למאגר נתונים שהועתק" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "קידוד" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -346,24 +349,24 @@ msgid "" msgstr "" "תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" msgstr "הצגת תרשים PDF" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "טבלה" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -374,33 +377,33 @@ msgstr "שורות" msgid "Size" msgstr "גודל" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "בשימוש" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "יצירה" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "עדכון אחרון" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "נבדק לאחרונה" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -409,7 +412,7 @@ msgstr[0] "%s טבלאות" msgstr[1] "%s טבלאות" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -439,7 +442,7 @@ msgid "Descending" msgstr "יורד" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "ראייה" @@ -460,8 +463,8 @@ msgid "Del" msgstr "מחיקה" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "או" @@ -533,17 +536,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "עיון" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -588,157 +593,142 @@ msgstr "בתוך הטבלה/הטבלאות:" msgid "Inside column:" msgstr "בתוך הטבלה/הטבלאות:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "הכנסה" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "מבנה" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "הסרה" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "ריקון" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "טבלה %s רוקנה" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "שדה %s נמחק" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "טבלה %s נמחקה" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 #, fuzzy msgid "Replication" msgstr "יחסים" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "סכום" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "עם הנבחרים:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "בחירת הכל" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "בטל סימון הכל" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "בדיקת טבלאות עבור תקורה" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "ייצוא" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "ריקון" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "הסרה" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "בדיקת טבלה" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "ייעול טבלה" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "תיקון טבלה" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "ניתוח טבלה" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "מילון מידע" @@ -746,13 +736,13 @@ msgstr "מילון מידע" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -779,8 +769,8 @@ msgstr "מצב" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "פעולה" @@ -827,12 +817,12 @@ msgstr "בדיקת טבלה" msgid "Database Log" msgstr "מאגר נתונים" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -901,7 +891,7 @@ msgstr "כתובת מועדפת נמחקה." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -924,7 +914,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "חזרה" @@ -1001,11 +991,11 @@ msgstr "שם המארח ריק!" msgid "The user name is empty!" msgstr "שם המשתמש ריק !" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "הסיסמא ריקה!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "הסיסמאות אינן זהות!" @@ -1108,116 +1098,122 @@ msgid "Searching" msgstr "חיפוש" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "שאילתת SQL" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "שאילתת SQL" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "מנועים" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "שינויים נשמרו" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "תצוגת יחסים" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "יחסים פנימיים" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "תכונות קשר כלליות" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "מבוטל" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "בחירת שדה להצגה" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "ייצור" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "שינוי סיסמא" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "יום שני" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "ללא" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "הקודם" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1225,96 +1221,96 @@ msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "מאי" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1322,176 +1318,176 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1567,9 +1563,9 @@ msgid "Comment" msgstr "הערות" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "עריכה" @@ -1590,15 +1586,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "מאגרי נתונים" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "שגיאה" @@ -1841,6 +1837,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "הכנסה" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "מבנה" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1903,7 +1925,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "שרת" @@ -1959,7 +1981,7 @@ msgstr "MySQL אמר: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "הסברת SQL" @@ -1971,11 +1993,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "ללא קוד PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "ייצור קוד PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "רענון" @@ -1985,7 +2007,7 @@ msgstr "רענון" msgid "Skip Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "בדיקת תקינות SQL" @@ -2085,7 +2107,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2108,14 +2130,14 @@ msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "מבנה" @@ -2246,7 +2268,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2256,15 +2278,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "שמירה" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "איפוס" @@ -2386,138 +2408,134 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "שינוי שם מאגר נתונים אל" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "עריכת השורה הבאה" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "הצגת תכונות" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "שמירה כקובץ" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "חבילת הקידוד של הקובץ:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "תבנית" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "דחיסה" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2525,71 +2543,71 @@ msgstr "דחיסה" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "שדות מוקפים ע\"י" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "הורדת שדות עם" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "החלפת NULL ע\"י" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "שורות מסתיימות ע\"י" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "שורות מסתיימות ע\"י" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "מהדורת Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2597,198 +2615,198 @@ msgstr "תבנית שם קובץ" msgid "Dump table" msgstr "%s טבלאות" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "כלול כותרת טבלה" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "כותרת טבלה" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "כותרת טבלה מומשך" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "מפתח תווית" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "סוג MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "יחסים" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "סוג ייצוא" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "צירוף תוי ציטוט (backquotes) אל שמות טבלאות ושדות" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "יצירת/עדכון/בדיקת תאריכים" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "השתמש בהכנסות מעוכבות" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "השתמש בהעלמות מהכנסות" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "סוג ייצוא" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "סוג ייצוא" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "ייצור" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2796,208 +2814,208 @@ msgstr "" msgid "Import" msgstr "ייצוא" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "קבצי ייבוא" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "שרת" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "טבלאות" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "תיעוד" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "מספר דף:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "תיעוד" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "היסטוריית SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3005,280 +3023,280 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "מצב" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "טבלה" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "השתמש בשדה טקסט" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "החלפת נתוני הטבלה עם הקובץ" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Column names" msgid "Column names in first row" msgstr "שמות עמודה" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "מציג הערות עמודה" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3286,429 +3304,429 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "גבולות משאבים" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "שינוי סדר הטבלה לפי" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "תיקיית בית של נתונים" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "חיבורים" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "אין טבלאות" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "איחוי טבלה" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "אין מאגרי נתונים" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "בחירת שרת" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3717,300 +3735,300 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "מאגר נתונים" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "קוד שרת (ID)" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "תיקון טבלה" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "בחירת שרת" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "מציג הערות עמודה" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "משפטים" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "גרסת שרת" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "ראיית טבלאות" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "הראה שאילתות שלמות" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "סטטיסטיקת שורה" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4018,122 +4036,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "סיסמא" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "שם משתמש:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ברירת מחדל" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4141,58 +4159,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4213,72 +4231,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "נתונים" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV עבור MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4317,7 +4335,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4346,8 +4364,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "הרשאות" @@ -4359,7 +4377,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4388,18 +4406,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "שינוי סיסמא" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "ללא סיסמא" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "הקלדה נוספת" @@ -4422,8 +4440,8 @@ msgstr "יצירת מאגר נתונים חדש" msgid "Create" msgstr "יצירה" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "ללא הרשאות" @@ -4558,8 +4576,8 @@ msgid "Compression:" msgstr "דחיסה" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "ללא" @@ -4717,7 +4735,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4753,8 +4771,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4773,49 +4791,49 @@ msgstr "הרצת שאילתה מועדפת" msgid "The row has been deleted" msgstr "השורה נמחקה" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "בשאילתה" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "מראה שורות" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "סה\"כ" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "שינוי" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "תצוגת הדפסה (עם טקסטים מלאים)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "מציג הערות עמודה" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "קישור לא נמצא" @@ -5237,12 +5255,12 @@ msgid "Data dump options" msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "הוצאת מידע עבור טבלה" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "מבנה טבלה עבור טבלה" @@ -5296,9 +5314,9 @@ msgstr "סוגי MIME זמינים" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "מארח" @@ -5444,43 +5462,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "תהליכים" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "פונקציה" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "הגבלות לטבלה" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "מבנה בלבד" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5513,43 +5531,43 @@ msgstr "תוצאת SQL" msgid "Generated by" msgstr "נוצר ע\"י" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5600,7 +5618,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5679,7 +5697,7 @@ msgid "Charset" msgstr "קידוד" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "בינארי" @@ -5963,8 +5981,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "שם משתמש" @@ -5983,7 +6001,7 @@ msgid "Variable" msgstr "משתנה" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "ערך" @@ -6002,34 +6020,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "כל משתמש" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "השתמש בשדה טקסט" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "כל שרת מארח" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "מקומי" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "מארח זה" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6284,11 +6302,11 @@ msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" msgid "Columns" msgstr "שמות עמודה" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" @@ -6320,7 +6338,7 @@ msgstr "ראה רק" msgid "Location of the text file" msgstr "מיקום של קובץ טקסט" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 #, fuzzy msgid "web server upload directory" msgstr "שמירת שרת בתוך תיקיית %s" @@ -6473,22 +6491,22 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "מנוע אחסון" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "הוספת %s תאים" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6659,8 +6677,8 @@ msgstr "תכונות קשר כלליות" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "משתמש" @@ -6698,7 +6716,7 @@ msgstr "דף הבית phpMyAdmin הרשמי" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6709,14 +6727,14 @@ msgstr "" "ברירת מחדל של MySQL. שרת MySQL שלך פועל עם ברירת מחדל זאת, והוא פתוח לחדירות," "ואתה ממש צריך לתקן את חור אבטחה זה." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6726,7 +6744,7 @@ msgstr "" "mbstring מותקנת, phpMyAdmin אינו יכול לחלק מחרוזות באופן תקין וזה יכול לגרום " "לתוצאות לא רצויות." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6734,18 +6752,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6753,21 +6771,21 @@ msgid "" msgstr "" "תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7100,332 +7118,332 @@ msgstr "מנועי אחסון" msgid "View dump (schema) of databases" msgstr "ראיית הוצאה (תבנית) של מאגרי נתונים" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "כלול כל ההרשאות חוץ מ- GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "מאפשר שינוי של מבני הטבלאות הקיימות." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 #, fuzzy msgid "Allows creating new databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "מאפשר יצירת טבלאות חדשות." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "מאפשר יצירת טבלאות זמניות." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "מאפשר יצירת טבלאות חדשות." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "מאפשר מחיקת טבלאות." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 #, fuzzy msgid "Allows executing stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 #, fuzzy msgid "Allows reading data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 #, fuzzy msgid "Allows changing data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "ללא הרשאות." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "ללא" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " הערה: שמות הרשאות MySQL מובטאות באנגלית " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "הרשאות גלובליות" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "ניהול" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "גבולות משאבים" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "מידע כניסה" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "אל תשנה את הסיסמא" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "לא נמצאו משתמשים." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "משתמש חדש נוסף." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "אתה עדכנת הרשאות עבור %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "אתה שללת הרשאות עבור %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "הסיסמא עבור %s שונתה בהצלחה." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "מוחק %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "טוען מחדש הרשאות" -#: server_privileges.php:1309 +#: server_privileges.php:1308 #, fuzzy msgid "The selected users have been deleted successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "עריכת הרשאות" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "שלילה" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "כל דבר" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "סקירת משתמשים" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "הענקה" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "הוספת משתמש חדש" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "הסרת משתמשים שנבחרו" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7437,91 +7455,91 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "הוספת הרשאות למאגר הנתונים הבא" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... שמירת הישן." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... מחיקת הישן מטבלאות המשתמשים." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "ללא" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "עולמי" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "תו כללי" @@ -8412,7 +8430,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8822,12 +8840,12 @@ msgstr "" msgid "Validated SQL" msgstr "בדיקת תקינות SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "תווית" @@ -8836,71 +8854,71 @@ msgstr "תווית" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "פונקציה" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " משום אורכם,
השדה הזה יכול להיות בלתי עריך " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "בינארי - אין לערוך" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "ואז" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9008,12 +9026,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "טבלה %s נמחקה" @@ -9508,11 +9526,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "תיאור" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "אין לך הרשאות מספיקות להיות כאן כרגע!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "הפרופיל עודכן בהצלחה." diff --git a/po/hi.po b/po/hi.po index cd66ab9726..6d94318410 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-05-21 05:48+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "सभी दिखाओ" @@ -37,17 +37,20 @@ msgstr "" "लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है," "या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "खोजें" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "खोजें" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -123,7 +126,7 @@ msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr " टेबल टिप्पणि:" @@ -134,7 +137,7 @@ msgstr " टेबल टिप्पणि:" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -149,8 +152,8 @@ msgstr "कोलम के नाम" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -162,13 +165,13 @@ msgstr "टाइप" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "अशक्त" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -187,8 +190,8 @@ msgid "Links to" msgstr "के लिए लिंक" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -204,10 +207,10 @@ msgstr "टिप्पणी" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "नहीं" @@ -223,10 +226,10 @@ msgstr "नहीं" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -253,7 +256,7 @@ msgstr "सभी का चयन करें" msgid "Unselect All" msgstr "सभी को रद्द करें" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "डेटाबेस नाम खाली है" @@ -267,81 +270,81 @@ msgstr " डेटाबेस का नाम %s बदल कर %s रखा msgid "Database %s has been copied to %s" msgstr " डेटाबेस %s से %s में कॉपी किया गया है" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "आदेश" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "डाटाबेस %s को ड्रोप कर दिया ।" -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "डेटाबेस को ______ में कॉपी करें" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "केवल संरचना" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "संरचना और डाटा" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "केवल डाटा" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s जोडें" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "शर्तें जोडें" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "नक़ल किये गए डाटाबेस पर जायें" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "क्रम में करें" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -353,24 +356,24 @@ msgstr "" "लिंक्ड तालिकाओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. " "क्यों ये किया गया है, जानने के लिए %shere%s पर क्लिक करें." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" msgstr "PDF स्कीमा दिखाओ" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr " टेबल " #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -381,33 +384,33 @@ msgstr "" msgid "Size" msgstr "आकार" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "उपयोग में" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "रचना" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "पिछला नवीनीकरण" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "पिछली जाँच" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgstr[0] " %s टेबल(s)" msgstr[1] " %s टेबल(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "अवरोही" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "दिखाओ" @@ -467,8 +470,8 @@ msgid "Del" msgstr "हटाइए" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "अथवा" @@ -541,17 +544,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s तालिका के अंदर %s मैच हैं." msgstr[1] "%s तालिका के अंदर %s मैच हैं." -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "ब्राउज़" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -596,156 +601,141 @@ msgstr " टेबल में:" msgid "Inside column:" msgstr "क्षेत्र के अंदर:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "इनसर्ट" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "संरचना" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "छोड़ें" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "खाली करें" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr " टेबल %s को खाली किया गया है." -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "द्रश्य %s रद्द दिया गया है." -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr " टेबल %s को रद्द किया गया है." -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "ट्रैकिंग सक्रिय है" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "इस द्रश्य में कम से कम इतनी पंक्तियाँ हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "दृश्य" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "प्रतिकृति" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "जोड" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भंडारण इंजन है." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "चुने हुओं को:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "सभी को चेक करें" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr " सभी को अनचेक करें" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr " ओवर्हेअद वाली तालुकाओं को चेक करें." -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "निर्यात" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "छापने वाला द्रश्य." -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "खाली करें" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "छोड़ें" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr " टेबल को चेक करें" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "तालिका को अनुकूलित करें" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr " टेबल को टीक करें" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "डेटा शब्दकोश" @@ -753,13 +743,13 @@ msgstr "डेटा शब्दकोश" msgid "Tracked tables" msgstr "ट्रैक की गयी तालिकाएं" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -785,8 +775,8 @@ msgstr "स्थिति" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "कार्य" @@ -829,12 +819,12 @@ msgstr "तालिकाओं को ट्रैक करें" msgid "Database Log" msgstr "डेटाबेस लॉग" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -911,7 +901,7 @@ msgstr "यह बुकमार्क हटा दिया गया है" msgid "Showing bookmark" msgstr "बुकमार्क प्रदर्शित किया जा रहा है." -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" @@ -937,7 +927,7 @@ msgstr "" "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "वापस" @@ -1015,11 +1005,11 @@ msgstr "मेज़बान का नाम (hostname) खाली है!" msgid "The user name is empty!" msgstr "उपयोगकर्ता नाम खाली है!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "पासवर्ड खाली है" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "पासवर्ड मिलते झूलते नहीं हैं." @@ -1118,110 +1108,114 @@ msgid "Searching" msgstr "खोजें" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" +msgid "Hide query box" msgstr "" #: js/messages.php:85 +msgid "Show query box" +msgstr "" + +#: js/messages.php:86 #, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr "इनलाइन" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "संशोधनों को बचाया गया है" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "रिश्ते को नष्ट कर दिया" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "विदेशी कुंजी रिश्ता जोड़ा." -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "आंतरिक संबंध जोड़ा." -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "त्रुटि: रिश्ता पहले से ही मौजूद है. " -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "डिजाइनर के लिए निर्देशांक बचाने में त्रुटि आ रही है" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "सामान्य सुविधाओं के संबंध" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "अक्षम" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "संदर्भित कुंजी का चयन करें." -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "विदेश कुंजी का चयन करें." -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "क्षेत्र प्रदर्शित करने के लिए चयन करें." -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "पासव्रड बदलिये" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "पासव्रड बदलिये" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mo" msgid "More" msgstr "सोमवार" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "किया" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "पिछला" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1229,231 +1223,231 @@ msgid "Next" msgstr " अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "आज" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "जनवरी" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "फरवरी" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "मार्च" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "अप्रैल" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "मई" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "जून" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "जुलाई" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "अगस्त" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "सितम्बर" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "नवम्बर" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "मन्गलवार" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "रविवार" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "सोमवार" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "मन्गलवार" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "बुधवार" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "गुरुवार" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "शुक्रवार" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "शनिवार" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "हफ्ता" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "घंटा" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "मिनट" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "सेकंड" @@ -1527,9 +1521,9 @@ msgid "Comment" msgstr "टिप्पणी" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "सम्पादन" @@ -1550,15 +1544,15 @@ msgid "" "removed." msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr " डाटाबेस" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "त्रुटि" @@ -1799,6 +1793,32 @@ msgstr "फाइल डाउनलोड करें" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "इनसर्ट" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "संरचना" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Databases statistics" @@ -1856,7 +1876,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "" @@ -1910,7 +1930,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL की व्याख्या " @@ -1922,11 +1942,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP Code बनाओ" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1935,7 +1955,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "" @@ -2033,7 +2053,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2056,14 +2076,14 @@ msgid "Select from the web server upload directory %s:" msgstr "" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2191,7 +2211,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2201,15 +2221,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "" @@ -2330,135 +2350,131 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "अगली रो को संपादित करें" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "फीचरस दिखाओ" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "फाईल मे सेव करें" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2466,64 +2482,64 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Column names" msgid "Columns escaped by" msgstr "कोलम के नाम" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "लाईन समाप्त होता है" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "लाईन समाप्त होता है" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2531,401 +2547,401 @@ msgstr "" msgid "Dump table" msgstr " %s टेबल(s)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "निर्यात" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr " टेबल और फील्ड के नाम को backquotes से Enclose करें" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy #| msgid "Extended inserts" msgid "Use delayed inserts" msgstr "विस्तृत इनसर्टस" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "विस्तृत इनसर्टस" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "निर्यात" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "German" msgid "General" msgstr "जर्मन" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "डोक्युमेंटेशन" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "पृष्ठ संख्या:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "क्वरी पेज" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authenticating..." msgid "Authentication" msgstr "सत्यापन." -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authenticating..." msgid "Authentication settings" msgstr "सत्यापन." -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL- इतिहास" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2933,277 +2949,277 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "नया क्षेत्र जोडें" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Column names" msgid "Column names in first row" msgstr "कोलम के नाम" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display Features" msgid "Display table filter" msgstr "फीचरस दिखाओ" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3211,422 +3227,422 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "टेबल क्रमांक को बदलिये " -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "क्वरी पेज" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "क्वरी पेज" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "क्वरी पेज" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3635,289 +3651,289 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr " डाटाबेस" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3925,121 +3941,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "क्षेत्र कोलम जोडें/हटायें" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "डिफ़ॉल्ट" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4047,58 +4063,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4127,43 +4143,43 @@ msgid "Signon authentication" msgstr "सत्यापन." #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Databases statistics" msgid "Database export options" @@ -4171,30 +4187,30 @@ msgstr " डाटाबेसों के आँकडे" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr " डाटा" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4233,7 +4249,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4262,8 +4278,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr " प्रिविलेज" @@ -4275,7 +4291,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4305,18 +4321,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "पासव्रड बदलिये" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "पासवर्ड नहीं है" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "" @@ -4337,8 +4353,8 @@ msgstr " नया डाटाबेस बनाओ" msgid "Create" msgstr "बनाइये" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "कोइ प्रिविलेज नहीं" @@ -4464,8 +4480,8 @@ msgid "Compression:" msgstr "" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "" @@ -4622,7 +4638,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4655,8 +4671,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4674,49 +4690,49 @@ msgstr "" msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "रौ देखिये" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr " कुल" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "बदलिये" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display Features" msgid "Display chart" msgstr "फीचरस दिखाओ" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "" @@ -5131,12 +5147,12 @@ msgid "Data dump options" msgstr "" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "" @@ -5185,9 +5201,9 @@ msgstr "फीचरस दिखाओ" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "होस्ट" @@ -5332,40 +5348,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5400,42 +5416,42 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5486,7 +5502,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5563,7 +5579,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "बइनरी" @@ -5845,8 +5861,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "यूसर नेम" @@ -5865,7 +5881,7 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "मूल्य" @@ -5884,34 +5900,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "कोई भी उपयोगकर्ता" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "कोई भी होस्ट" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6160,11 +6176,11 @@ msgstr "डाटाबेस %s में SQL query/queries चलाइये msgid "Columns" msgstr "कोलम के नाम" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" @@ -6196,7 +6212,7 @@ msgstr "केवल देखिये" msgid "Location of the text file" msgstr "" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "" @@ -6330,22 +6346,22 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s क्षेत्र जोडें" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6515,8 +6531,8 @@ msgstr "सामान्य सुविधाओं के संबंध" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "यूसर" @@ -6553,7 +6569,7 @@ msgstr "phpMyAdmin का आधिकारिक होमपेज" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6561,21 +6577,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6583,18 +6599,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6603,21 +6619,21 @@ msgstr "" "लिंक्ड तालिकाओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. " "क्यों ये किया गया है, जानने के लिए %shere%s पर क्लिक करें." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6945,111 +6961,111 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7057,215 +7073,215 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "No" msgctxt "None privileges" msgid "None" msgstr "नहीं" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr " केवल टेबल के प्रिविलेज" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr " केवल डाटाबेस के प्रिविलेज" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "एडमिनिस्ट्रेशन" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "पासवर्ड मत बदलिये" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "कोई यूसर नहीं।" -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "आपने %s के privileges वापस ले लिया " -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr " प्रिविलेज एडिट करें" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "वापस लो" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "कोई" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "नया यूसर जोडें" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7274,91 +7290,91 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr " केवल कोलम के प्रिविलेज" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "No" msgctxt "Create none database for user" msgid "None" msgstr "नहीं" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8244,7 +8260,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8646,12 +8662,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "लेबल" @@ -8660,69 +8676,69 @@ msgstr "लेबल" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें " -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "BLOB रिपोजिटरी संदर्भ हटायें" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "बइनरी - एडिट मत करिये" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "BLOB भण्डार में अपलोड करें" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे " -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "और फिर" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "एक और नई रो सम्मिलित करें" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8833,12 +8849,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -9322,11 +9338,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "वर्णन" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "प्रोफाइल अपडेट कर दिया ।" diff --git a/po/hr.po b/po/hr.po index c41441234f..b70d39bf46 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" @@ -16,7 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Prikaži sve" @@ -39,17 +39,20 @@ msgstr "" "nadređeni prozor ili su postavke sigurnosti vašeg preglednika konfigurirane " "za blokiranje ažuriranja preko više prozora." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Traži" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "Traži" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -125,7 +128,7 @@ msgid "Database comment: " msgstr "Komentar baze podataka: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Komentari tablice" @@ -136,7 +139,7 @@ msgstr "Komentari tablice" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -151,8 +154,8 @@ msgstr "Nazivi stupaca" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -164,13 +167,13 @@ msgstr "Vrsta" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -189,8 +192,8 @@ msgid "Links to" msgstr "Povezano s" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -206,10 +209,10 @@ msgstr "Komentari" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -225,10 +228,10 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgstr "Odaberi sve" msgid "Unselect All" msgstr "Ukloni sav odabir" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Naziv baze podataka je prazan!" @@ -269,80 +272,80 @@ msgstr "Baza podataka %s preimenovana je u %s" msgid "Database %s has been copied to %s" msgstr "Baza podataka %s kopirana je u %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Naredba" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Baza podataka %s je odbačena." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nema baza podataka" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopiraj bazu podataka u" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo strukturu" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Strukturu i podatke" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podatke" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj prisile" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu podataka" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Uspoređivanje" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,24 +357,24 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Shema relacija" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tablica" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -382,33 +385,33 @@ msgstr "Redaka" msgid "Size" msgstr "Veličina" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "u upotrebi" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Izrada" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Posljednje ažuriranje" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -417,7 +420,7 @@ msgstr[0] "%s tablica" msgstr[1] "%s tablica" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -447,7 +450,7 @@ msgid "Descending" msgstr "Silazno" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Prikaži" @@ -468,8 +471,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Ili" @@ -542,17 +545,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s poklapanja unutar tablice %s" msgstr[1] "%s poklapanja unutar tablice %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Pretraživanje" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -597,69 +602,30 @@ msgstr "Unutar tablica:" msgid "Inside column:" msgstr "Unutar polja:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Umetni" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Strukturu" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Ispusti" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Isprazni" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s je očišćena" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Index %s je ispušten" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s je odbačen" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -667,87 +633,111 @@ msgid "" msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Prikaz" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Zbroj" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "S odabirom:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Ukloni sve oznake" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Izvoz" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Isprazni" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Ispusti" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Provjeri tablicu" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimiziraj tablicu" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Popravi tablicu" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analiziraj tablicu" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Rječnik podataka" @@ -756,13 +746,13 @@ msgstr "Rječnik podataka" msgid "Tracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -790,8 +780,8 @@ msgstr "Stanje" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Aktivnost" @@ -839,12 +829,12 @@ msgstr "Provjeri tablicu" msgid "Database Log" msgstr "Baza podataka" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -923,7 +913,7 @@ msgstr "Favorit je izbrisan." msgid "Showing bookmark" msgstr "Prikazivanje oznake" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Izrađen je favorit %s" @@ -951,7 +941,7 @@ msgstr "" "povećate vremenska ograničenja unutar php." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Nazad" @@ -1033,11 +1023,11 @@ msgstr "Naziv računala je prazan!" msgid "The user name is empty!" msgstr "Korisničko ime je prazno!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" @@ -1142,113 +1132,119 @@ msgid "Searching" msgstr "Traži" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL upit" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL upit" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Pogoni" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Izmjene su spremljene" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Dodana je relacija FOREIGN KEY" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Dodane interne relacije" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Pogreška: Relacija nije dodana." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Pogreška: Relacija već postoji." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Pogreška tijekom spremanja koordinata za Kreatora." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Opće osobine relacija" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Onemogućeno" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Odaberi polje za prikaz" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generiraj" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promijeni lozinku" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "Podaci" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodni" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1256,96 +1252,96 @@ msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Svi" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1353,178 +1349,178 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Pro" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1602,9 +1598,9 @@ msgid "Comment" msgstr "Komentar" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Uređivanje" @@ -1626,15 +1622,15 @@ msgid "" msgstr "" "Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Baze podataka" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Pogreška" @@ -1881,6 +1877,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Umetni" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Strukturu" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1951,7 +1973,7 @@ msgstr "" "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "konfiguraciju." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Poslužitelj" @@ -2007,7 +2029,7 @@ msgstr "MySQL je poručio: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Objasni SQL" @@ -2019,11 +2041,11 @@ msgstr "Preskoči Objasni SQL" msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Izradi PHP kod" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Osvježi" @@ -2032,7 +2054,7 @@ msgstr "Osvježi" msgid "Skip Validate SQL" msgstr "Preskoči provjeru valjanosti SQL-a" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Provjera valjanosti SQL-a" @@ -2132,7 +2154,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2156,14 +2178,14 @@ msgid "Select from the web server upload directory %s:" msgstr "mapa učitavanja web poslužitelja" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Strukturu" @@ -2293,7 +2315,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2303,15 +2325,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Spremi" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Povrat" @@ -2433,140 +2455,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Preimenuj bazu podataka u" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Preimenuj bazu podataka u" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Preimenuj bazu podataka u" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Uredi sljedeći redak" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Osobine prikaza" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Spremi kao datoteku" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Tablica znakova za datoteku:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Oblikovanje" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2576,71 +2594,71 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Nazive polja stavi u prvi red" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Polja obuhvaćena po" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Polja izostavljena po" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "NULL zamijeni s" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Redovi završeni s" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Redovi završeni s" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel izdanje" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2648,410 +2666,410 @@ msgstr "Predložak naziva datoteka" msgid "Dump table" msgstr "%s tablica" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Uključi naslov tablice" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Naslov tablice" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Nastavljeni naslov tablice" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Ključ oznake" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME vrsta" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Način rada SQL kompatibilnosti" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Izrada/Ažuriranje/Provjera datuma" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Upotrijebi odgođena umetanja" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Onemogući provjere stranih znakova" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Za BLOB upotrijebi heksadecimalno" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Upotrijebi ignoriranje umetaka" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Najveća duljina izrađenog upita" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Izvoz uključi u transakciju" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "Uvezi datoteke" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generiraj" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Uvoz" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Uvezi datoteke" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Poslužitelji" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tablice" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 #, fuzzy msgid "Tables display options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Otvori tekst dokumenta" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Broj stranice:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Replikacija" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL upit" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL upit" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL upit" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL povijest" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3059,72 +3077,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Stanje" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tablica" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Upotrijebi tekstualno polje" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3135,213 +3153,213 @@ msgstr "" "ograničenja. Ovo bi mogao biti dobar način uvoza velikih datoteka, ali može " "prekinuti transakcije." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignoriraj istovjetne redove" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Podatke tablice zamijeni datotekom" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Oblikovanje uvezene datoteke" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Upotrijebi lokalnu ključnu riječ" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, 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:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "Broj presloženih redaka." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Prikazivanje stupca komentara" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "MySQL verzija klijenta" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3349,435 +3367,435 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "Nema baza podataka" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Ograničenja resursa" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Prikaži/sakrij lijevi izbornik" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Izmijeni rasporede tablice po" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Popravi grane" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Osnovna mapa podataka" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Veze" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Nema tablica" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Defragmentiraj tablicu" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "PHP ekstenzija" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Nema baza podataka" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "naziv poslužitelja" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3786,302 +3804,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "naziv baze podataka" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "ID poslužitelja" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Popravi tablicu" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Odabir poslužitelja" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazivanje stupca komentara" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Izjave" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Rad s automatskim povratom" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Prikaži otvorene tablice" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži pune upite" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Statistike redova" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4089,122 +4107,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Prikaži otvorene tablice" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "Preimenuj bazu podataka u" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4212,59 +4230,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "Osnovna mapa podataka" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4285,74 +4303,74 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV upotrebom LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Otvori izračunsku tablicu dokumenta" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Prilagođena boja" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcije izvoza baze podataka" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Podaci" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Otvori tekst dokumenta" @@ -4391,7 +4409,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Događaji" @@ -4420,8 +4438,8 @@ msgid "Designer" msgstr "Kreator" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegije" @@ -4433,7 +4451,7 @@ msgstr "Rutine" msgid "Return type" msgstr "Vrsta povratka" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4465,18 +4483,18 @@ msgid "Details..." msgstr "Detalji..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Promijeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Bez lozinke" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ponovite" @@ -4499,8 +4517,8 @@ msgstr "Izradi novu bazu podataka" msgid "Create" msgstr "Izradi" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Bez privilegija" @@ -4644,8 +4662,8 @@ msgid "Compression:" msgstr "Kompresija" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "bez kompresije" @@ -4818,7 +4836,7 @@ msgstr "Presloži po ključu" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4853,8 +4871,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Sakrij" @@ -4872,49 +4890,49 @@ msgstr "Izvrši favorizirani upit" msgid "The row has been deleted" msgstr "Redak je izbrisan" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Eliminiraj" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "unutar upita" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Prikazivanje redaka" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Promijeni" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Prikaz ispisa (s potpunim tekstovima)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Veza nije pronađena" @@ -5393,12 +5411,12 @@ msgid "Data dump options" msgstr "Opcije izvoza baze podataka" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Izbacivanje podataka za tablicu" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Tablična struktura za tablicu" @@ -5451,9 +5469,9 @@ msgstr "Raspoložive MIME vrste" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Računalo" @@ -5599,40 +5617,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Postupci" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funkcije" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Ograničenja za tablicu" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME VRSTE ZA TABLICU" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABLICE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Okidači" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struktura za pregledavanje" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Unutarnja struktura za pregledavanje" @@ -5668,44 +5686,44 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generirano s" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5757,7 +5775,7 @@ msgstr "Neispravan broj polja u CSV unosu unutar retka %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Naziv tablice" @@ -5836,7 +5854,7 @@ msgid "Charset" msgstr "Tablica znakova" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binarno" @@ -6121,8 +6139,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Korisničko ime" @@ -6143,7 +6161,7 @@ msgid "Variable" msgstr "Varijabla" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Vrijednost" @@ -6162,34 +6180,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Upotrijebi tekstualno polje" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Bilo koje računalo" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Ovo računalo" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Upotrijebi tablicu poslužitelja" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6446,11 +6464,11 @@ msgstr "Pokreni SQL upit na bazi podataka %s" msgid "Columns" msgstr "Nazivi stupaca" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" @@ -6482,7 +6500,7 @@ msgstr "Samo prikaz" msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "mapa učitavanja web poslužitelja" @@ -6649,22 +6667,22 @@ msgstr "" "Za ovo preoblikovanje ne postoji raspoloživ opis.
Molimo da od autora " "zatražite objašnjenje rada %s ." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Pogon pohrane" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Definicija PARTICIJE" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s polja" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6918,8 +6936,8 @@ msgstr "Opće osobine relacija" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Korisnik" @@ -6956,7 +6974,7 @@ msgstr "Službena stranica programa phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6968,7 +6986,7 @@ msgstr "" "pokrenut je sa zadanim postavkama i kao takav otvoren je upadima. Potrebno " "je ispraviti ovaj sigurnosni nedostatak." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6978,7 +6996,7 @@ msgstr "" "opcija nije kompatibilna s programom phpMyAdmin i može prouzrokovati " "oštećivanje nekih podataka!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6988,7 +7006,7 @@ msgstr "" "tablicu znakova. Bez proširenja mbstring, phpMyAdmin nije u mogućnosti " "pravilno razdjeljivati naredbe i može doći do neočekivanih rezultata." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6996,18 +7014,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguracijska datoteka potražuje tajnu lozinku (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7016,14 +7034,14 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7032,7 +7050,7 @@ msgstr "" "Verzija %s vaše PHP MySQL biblioteke razlikuje se oda vaše verzije %s MySQL " "poslužitelja. Ovo bi moglo prouzrokovati nepredviđeno ponašanje." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7376,114 +7394,114 @@ msgstr "Pogoni pohrane" msgid "View dump (schema) of databases" msgstr "Prikaži ispis (shemu) baza podataka" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Obuhvaća sve privilegije osim GRANT (Podari)." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Dopušta izmjenu strukture postojećih tablice." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Dopušta izradu novih baze podataka i tablice." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Dopušta izradu pohranjenih rutina." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Dopušta izradu novih tablica." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Dopušta izradu privremenih tablica." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Dopušta izradu novih prikaza." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Dopušta brisanje podataka." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Dopušta odbacivanje baza podataka i tablica." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Dopušta odbacivanje tablica." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Omogućuje postavljanje događaja za planer" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Dopušta pokretanje pohranjenih rutina." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Dopušta uvoz i izvoz podataka iz datoteka." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Dopušta izradu i odbacivanje indeksa." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Dopušta umetanje i zamjenu podataka." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Dopušta zaključavanje tablica u trenutnoj grani." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ograničava broj novih povezivanja koje korisnik može otvoriti, po satu." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ograničava broj upita koje korisnik može poslati poslužitelju, po satu." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7491,61 +7509,61 @@ msgstr "" "Ograničava broj naredbi koje korisnik može pokrenuti, a čija je namjena " "mijenjanje bilo koje tablice ili baze podataka, po satu." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Omogućuje pregledavanje procesa za sve korisnike" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nema učinka u ovoj verziji MySQL-a." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene " "pohrane poslužitelja." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrebno za replikacijske potčinjene." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Dopušta čitanje podataka." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Daje pristup cjelokupnom popisu baza podataka." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dopušta izvođenje upita SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Dopušta gašenje poslužitelja." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7555,159 +7573,159 @@ msgstr "" "većinu administrativnih operacija poput postavljanja općih varijabli ili " "eliminiranje grana drugih korisnika." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Omogućuje izradu i uklanjanje okidača" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Dopušta mijenjanje podataka." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Bez privilegija." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "bez kompresije" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Opće privilegije" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Napomena: Postavljanje ovih opcija na vrijednost 0 (nula) uklanja " "ograničenje." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "_Podaci prijave" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Ne mijenjaj lozinku" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnici nisu pronađeni." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Opozvali ste privilegije za %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s uspješno je promijenjena." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Brisanje %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nema odabranih korisnika za uklanjanje!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Ponovno učitavanje privilegija" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Opozovi" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Podarivanje" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Ukloni odabrane korisnike" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7720,94 +7738,94 @@ msgstr "" "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Privilegije specifične za stupac" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Dodaj privilegije za sljedeće baze podataka" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Kako bi se mogli upotrebljavati u doslovnom smislu, džokerima \\_ i \\% mora " "prethoditi znak \\" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Izradi novog korisnika s istim privilegijama i..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... zadržati staru." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... izbriši starog iz korisničkih tablica." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... opozovi sve aktivne privilegije iz stare i potom je izbriši." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Baza podataka za korisnika" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "bez kompresije" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Izradi bazu podataka istog naziva i podari sve privilegije" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "opće" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "specifično za bazu podataka" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "džoker" @@ -8823,7 +8841,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9238,12 +9256,12 @@ msgstr "Prikazivanje SQL upita" msgid "Validated SQL" msgstr "Provjera valjanosti SQL-a" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Oznaka" @@ -9252,75 +9270,75 @@ msgstr "Oznaka" msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s uspješno je izmijenjena." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "" " Zbog svoje duljine,
uređivanje ovog polja možda neće biti moguće " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binarno - ne uređuj" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "i potom" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, " "odnosno s tipkama CTRL+Strelice za premještanje bilo kamo" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9431,12 +9449,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tablica %s već postoji!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Tablica %1$s je izrađena." @@ -9931,11 +9949,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemate dovoljno privilegija da boravite ovdje!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil je ažuriran." diff --git a/po/hu.po b/po/hu.po index 6f1570f0d8..da5c81d5a5 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-09-14 20:45+0200\n" "Last-Translator: KAMI \n" "Language-Team: hungarian \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Mind látható" @@ -38,17 +38,20 @@ msgstr "" "szülőablakot, vagy a böngésző biztonsági beállításai tiltják az ablakok " "közti frissítést" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Keresés" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Keresés" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "Megjegyzés az adatbázishoz: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Tábla megjegyzése" @@ -135,7 +138,7 @@ msgstr "Tábla megjegyzése" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -150,8 +153,8 @@ msgstr "Oszlopnevek" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -163,13 +166,13 @@ msgstr "Típus" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nulla" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -188,8 +191,8 @@ msgid "Links to" msgstr "Hivatkozások:" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -205,10 +208,10 @@ msgstr "Megjegyzések" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nem" @@ -224,10 +227,10 @@ msgstr "Nem" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -254,7 +257,7 @@ msgstr "Mind kijelölése" msgid "Unselect All" msgstr "Mind törlése" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Üres az adatbázis neve!" @@ -268,80 +271,80 @@ msgstr "A(z) %s adatbázis átnevezése %s névre megtörtént" msgid "Database %s has been copied to %s" msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Adatbázis átnevezése" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Parancs" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Adatbázis átnevezése" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "A(z) %s adatbázis eldobása megtörtént." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nincs adatbázis" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Adatbázis másolása" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Csak a szerkezet" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Szerkezet és adatok" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Csak az adatok" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE másolás előtt" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s hozzáadása" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Megszorítás hozzáadása" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "A másolt adatbázisra váltás" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Illesztés" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -353,24 +356,24 @@ msgstr "" "A hivatkozott táblákkal történő munka kiegészítő funkciói inaktiválásra " "kerültek. Ha szeretné megtudni, hogy miért, kattintson %side%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Kapcsolati séma" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tábla" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -381,33 +384,33 @@ msgstr "sor" msgid "Size" msgstr "Méret" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "használatban" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Létrehozás" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Utolsó frissítés" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Utolsó ellenőrzés" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgstr[0] "%s tábla" msgstr[1] "%s tábla" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "Csökkenő" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Megjelenítés" @@ -467,8 +470,8 @@ msgid "Del" msgstr "Törlés" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Vagy" @@ -541,17 +544,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s találat a(z) %s táblában" msgstr[1] "%s találat a(z) %s táblában" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Tartalom" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -596,69 +601,30 @@ msgstr "Táblá(k)ban:" msgid "Inside column:" msgstr "Mezőben:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Beszúrás" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Szerkezet" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Eldobás" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Kiürítés" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "A(z) %s tábla kiürítése megtörtént" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "A(z) %s nézet eldobása kész" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "A(z) %s tábla eldobása megtörtént" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -667,87 +633,111 @@ 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." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Nézet" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Többszörözés" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Összeg" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Mind kijelölése" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Kijelölés törlése" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exportálás" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Kiürítés" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Eldobás" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Tábla ellenőrzése" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Tábla optimalizálása" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Tábla javítása" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Tábla elemzése" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Adatkönyvtár" @@ -756,13 +746,13 @@ msgstr "Adatkönyvtár" msgid "Tracked tables" msgstr "A zárolt táblák kihagyása" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -789,8 +779,8 @@ msgstr "Állapot" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Művelet" @@ -838,12 +828,12 @@ msgstr "Tábla ellenőrzése" msgid "Database Log" msgstr "Adatbázis" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -923,7 +913,7 @@ msgstr "A könyvjelző törlése megtörtént." msgid "Showing bookmark" msgstr "Könyvjelző megjelenítése" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" @@ -952,7 +942,7 @@ msgstr "" "növeli meg a PHP időkorlátozását." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Vissza" @@ -1032,11 +1022,11 @@ msgstr "A hosztnév üres!" msgid "The user name is empty!" msgstr "Üres a felhasználónév!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" @@ -1142,114 +1132,122 @@ msgid "Searching" msgstr "Keresés" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL-lekérdezési panelek" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL-lekérdezési panelek" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Motorok" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "A kapcsolat törlése kész" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "IDEGEN KULCS kapcsolat hozzáadása megtörtént" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "A belső kapcsolat hozzáadása megtörtént" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Hiba: Nem adta hozzá a kapcsolatot." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Hiba: A kapcsolat már létezik." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Hiba történt a Tervező koordinátáinak mentésekor." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Általános relációs jellemzők" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Letiltott" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Válassza ki az elsődleges kulcsot, vagy egy egyedi kulcsot" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Válassza ki a megjelenítendő mezőt" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generálás" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Jelszó megváltoztatása" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "H" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Adományozás" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Előző" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1257,96 +1255,96 @@ msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Összesen" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Bináris" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "márc." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "ápr." -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "máj." -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jún." -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "júl." -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug." -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt." -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "jan." #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "febr." #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "márc." #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "ápr." #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1354,178 +1352,178 @@ msgid "May" msgstr "máj." #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "jún." #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "júl." #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "aug." #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "szept." #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "okt." #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "nov." #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "dec." -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "V" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "H" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "K" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "P" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "V" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "H" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "K" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Cs" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "P" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "V" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "H" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "használatban" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1603,9 +1601,9 @@ msgid "Comment" msgstr "Megjegyzés" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Módosítás" @@ -1628,15 +1626,15 @@ msgstr "" "A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg " "eltávolítható." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Adatbázisok" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Hiba" @@ -1886,6 +1884,32 @@ msgstr "Fájl letöltése" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Beszúrás" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Szerkezet" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1956,7 +1980,7 @@ msgstr "Érvénytelen szerverindex: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállításokat." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Szerver" @@ -2013,7 +2037,7 @@ msgstr "A MySQL mondta: " msgid "Failed to connect to SQL validator!" msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Az SQL magyarázata" @@ -2025,11 +2049,11 @@ msgstr "SQL magyarázat átugrása" msgid "Without PHP Code" msgstr "PHP kód nélkül" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP-kód létrehozása" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Frissítés" @@ -2038,7 +2062,7 @@ msgstr "Frissítés" msgid "Skip Validate SQL" msgstr "SQL érvényesítés átugrása" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL érvényesítése" @@ -2138,7 +2162,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2162,14 +2186,14 @@ msgid "Select from the web server upload directory %s:" msgstr "webszerver feltöltési könyvtár" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Szerkezet" @@ -2301,7 +2325,7 @@ msgid "Set value: %s" msgstr "Adja meg az értéket: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Alapértelmezett érték visszaállítása" @@ -2311,15 +2335,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Mentés" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Törlés" @@ -2463,112 +2487,108 @@ msgid "Confirm DROP queries" msgstr "A DROP lekérdezések megerősítése" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Az adatbázisok megjelenítésének beállításai" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Az adatbázisba belépéskor megjelenített fül" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Alapértelmezett adatbázis fül" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "A szerverre belépéskor megjelenített fül" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Alapértelmezett szerver fül" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "A táblába belépéskor megjelenített fül" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Alapértelmezett tábla fül" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy msgid "Show binary contents as HEX by default" msgstr "Bináris tartalom megjelenítése" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 #, fuzzy msgid "Show binary contents as HEX" msgstr "Bináris tartalom megjelenítése" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Az adatbázisok legördülő helyett listaként történő megjelenítése" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Az adatbázisok megjelenítése listaként" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "A szerverek legördülő helyett listaként történő megjelenítése" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "A szerverek megjelenítése listaként" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Következő sor szerkesztése" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Tulajdonságok megjelenítése" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "A hibák figyelmen kívül hagyása" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "A hibák figyelmen kívül hagyása" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2576,32 +2596,32 @@ 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:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Végrehajtási idő legfeljebb" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Mentés fájlként" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "A fájl karakterkészlete" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formátum" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Tömörítés" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2611,70 +2631,70 @@ msgstr "Tömörítés" msgid "Put columns names in the first row" msgstr "A mezőneveket az első sorba teszi" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Mező lezárás" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Mező escape karakter" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "NULL cseréje ezzel:" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "A mezőkben lévő CRLF karakterek eltávolítása" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Sorok vége" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Sorok vége" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel szerkesztés" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Adatbázisnév-sablon" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Szervernév-sablon" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Táblanév-sablon" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2682,116 +2702,116 @@ msgstr "Táblanév-sablon" msgid "Dump table" msgstr "%s tábla" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Tartalmazza a táblacímet" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Táblacím" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Táblacím folytatása" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Feliratkulcs" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-típus" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Kapcsolatok" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Exportálás típusa" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Mentés a szerveren" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "A létező fájl(ok) felülírása" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "A fájlnévsablon megjegyzése" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Idézőjelek használata a tábla- és mezőneveknél" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL kompatibilitási mód" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Létrehozás/módosítás/ellenőrzés dátuma" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Késleltetett beszúrások használata" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Az idegen kulcsok ellenőrzésének letiltása" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Hexadecimális értékek használata a BLOB művelethez" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Mellőző beszúrások használata" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "A létrehozott lekérdezés hossza legfeljebb" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Exportálás típusa" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Az exportálás befoglalása egy tranzakcióban" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Exportálás alapértelmezései" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 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:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "SSL kapcsolat kényszerítése" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2799,192 +2819,192 @@ msgstr "" "Az elemek 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Az idegen kulcs legördülő sorrendje" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Idegen kulcs korlátozása" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Tallózó mód" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "A tallózó mód testreszabása" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Az exportálás alapértelmezett beállításainak testreszabása" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Szerkesztő mód" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "A szerkesztő mód testreszabása" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Exportálás alapértelmezései" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Az exportálás alapértelmezett beállításainak testreszabása" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funkciók" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generálás" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importálás" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Importálás alapértelmezései" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 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:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Importálás / exportálás" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" "Az importálás és az exportálás könyvtárának megadása, ill. a tömörítés " "beállítása" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Az adatbázisok megjelenítésének beállításai" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigációs keret" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "A navigációs keret megjelenésének testreszabása" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Szerverek" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "A szerverek megjelenítésének beállításai" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Táblák" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "A táblák megjelenítésének beállításai" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Főkeret" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document szöveges dokumentum" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Egyéb alapbeállítások" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "A sehova sem illő beállítások" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Oldalszám:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Lekérdezés ablak" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "A lekérdezés ablak beállításainak testreszabása" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Biztonság" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2992,27 +3012,27 @@ 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:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Alapbeállítások" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Hitelesítés típusa" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Hitelesítés típusa" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Szerverbeállítások" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3020,17 +3040,17 @@ msgstr "" "Speciális szerverbeállítások, melyeket ne módosítson, ha nem tudja, hogy " "mire valók" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Írja be a szerver csatlakozási paramétereit" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Konfigurációs fájl" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3045,56 +3065,56 @@ msgstr "" "hozzáférést, lásd a [a@../Documentation.html#linked-tables]csatolt táblák " "infrastruktúra[/a] fejezetet a dokumentációban" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Exportálás beállításainak testreszabása" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Importálás alapértelmezéseinek testreszabása" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "A navigációs keret testreszabása" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "A főkeret testreszabása" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-lekérdezések" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL-lekérdezési panelek" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Az SQL-lekérdezési panelekben látható hivatkozások testreszabása" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL-lekérdezések" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-előzmények" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3102,49 +3122,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Indítás" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "A kezdőlap testreszabása" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Fülek" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Válassza ki, hogyan kívánja használni a füleket" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Szöveges mező használata" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Exportálás beállításainak testreszabása" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! szöveg" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Figyelmeztetés" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3152,15 +3172,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:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Az iconv funkció extra paraméterei" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3168,11 +3188,11 @@ msgstr "" "Ha engedélyezett, akkor a PMA 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:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Több utasítás hibáinak figyelmen kívül hagyása" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3182,21 +3202,21 @@ 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:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Részleges importálás: a megszakítás engedélyezése" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "A dupla sorok figyelmen kívül hagyása" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "A táblaadatok lecserélése fájlra" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3204,96 +3224,96 @@ msgstr "" "Alapértelmezett formátum, mely függ a helytől (adatbázis, tábla) és csak az " "SQL mindig elérhető" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Az importált fájl formátuma" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "LOCAL kulcsszó használata" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "A mezőneveket az első sorba teszi" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Az elejétől kihagyandó rekordok (lekérdezések) száma" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Részleges importálás: lekérdezések kihagyása" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Az AUTO_INCREMENT nulla értékekhez nincs használatban" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Hány sor szúrható be egyszerre" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "A beszúrt sorok száma" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "A gyors hozzáférés ikon célja" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "A logo megjelenítése a bal oldali keretben" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "A logó megjelenítése" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "A választható szerverek megjelenítése a bal oldali keret tetején" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "A választható szerverek megjelenítése" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Az adatbázisok megjelenítése fa szerkezetként" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 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:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Az adatbázisfa elválasztója" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3301,39 +3321,39 @@ msgstr "" "Csak az egyszerűsített változatban; az adatbázisok megjelenítése faként (az " "alább megadott elválasztó által megállapítva)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Az adatbázisok megjelenítése fa szerkezetként" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Tiltsa ezt le, ha egyszerre kívánja megtekinteni az összes adatbázist" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Egyszerűsített változat használata" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "A táblafa mélysége legfeljebb" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 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:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Táblafa elválasztó" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "A logó hivatkozásának URL-címe" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3341,27 +3361,27 @@ msgstr "" "A hivatkozott oldal megnyitása a(z) ([kbd]main[/kbd]) főablakban vagy újban " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "A logó hivatkozásának célja" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "A szerver kiemelése az egérmutató alatt" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "A szövegkiemelés engedélyezése" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Grafikusan kevésbé kiemelt fülek használata" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Világos fülek" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" @@ -3369,11 +3389,11 @@ msgid "" msgstr "" "Egy SQL-lekérdezés megjelenítésekor használt karakterek száma legfeljebb" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3384,11 +3404,11 @@ msgstr "" "szerver használata esetén könnyen megfeledkezhet a másik szerverről " "kijelentkezésről." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Kijelentkezéskor az összes cookie törlése" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3396,11 +3416,11 @@ msgstr "" "Meghatározza, hogy az előző bejelentkezést kell-e újrahívni a cookie-s " "hitelesítési módban" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "A felhasználónév újrahívása" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3412,55 +3432,55 @@ 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:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "A bejelentkezési cookie tárolása" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" "Meghatározza, hogy meddig érvényes (másodpercben) egy bejelentkezési cookie" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "A bejelentkezési cookie érvényessége" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "Egy SQL-lekérdezés megjelenítésekor használt karakterek száma legfeljebb" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "A SQL kijelzett hossza legfeljebb" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "A bal oldali keretben és az adatbázislistában látható adatbázisok száma" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Az adatbázisok száma" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3470,29 +3490,29 @@ 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "A megjelenítendő sorok száma" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "A táblalistában megjelenítendő táblák száma" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "A táblák száma" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3500,48 +3520,48 @@ msgstr "" "Egy parancsfájl számára a lefoglaláshoz engedélyezett bájtok száma, pl. [kbd]" "32M[/kbd] (korlátlan: [kbd]0[/kbd])" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "A memória korlátozása" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Bal oldali menü megjelenítése/elrejtése" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Tábla rendezésének módosítása e szerint:" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Csak ikonok, csak szöveg, vagy mindkettő használata" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Navigációs sáv ikonokkal" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "A GZip-kimenet pufferelése a HTTP-átvitelekben megnövekedett sebességhez" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip-kimenet pufferelése" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3553,46 +3573,46 @@ msgstr "" "[kbd]SMART[/kbd] - pl. a TIME, DATE, DATETIME és TIMESTAMP típusú mezők " "sorrendje csökkenő, egyéb esetben növekvő" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Alapértelmezett rendezési mód" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Állandó kapcsolatok használata a MySQL adatbázisokhoz" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Állandó kapcsolatok" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Ikonos táblaműveletek" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "A BLOB vagy a BLOB és BINARY mezők módosításának tiltása" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "A bináris mezők védelme" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3606,119 +3626,119 @@ msgstr "" "szükséges hozzá). Ha letiltja, akkor JS-rutinokat használ fel a lekérdezési " "előzmények megjelenítéséhez (ablak bezárásakor elvész)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Állandó lekérdezési előzmények" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Hány lekérdezés tartandó meg az előzményekben" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "A lekérdezési előzmények hossza" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Új lekérdezési ablak megnyitásakor fül megjelenítése" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Alapértelmezett lekérdezési ablak fül" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Lekérdezés ablak" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Lekérdezés ablak" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Lekérdezés ablak" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "Válassza ki a karakterkészlet-konvertáláshoz használandó funkciókat" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Átkódoló motor" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Szálak kijavítása" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "A könyvtár, melybe az exportálások menthetők a szerveren" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Mentési könyvtár" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Hagyja üresen, ha nem használja" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Az állomás hitelesítési sorrendje" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Hagyja üresen az alapértelmezésekhez" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Az állomás hitelesítési szabályai" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "A jelszó nélküli bejelentkezés engedélyezése" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "A root bejelentkezés engedélyezése" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3728,19 +3748,19 @@ msgstr "" "fájljának elérési útja (nem a dokumentumgyökérben található; javaslat: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "SweKey konfigurációs fájl" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Használandó hitelesítési módszer" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Hitelesítés típusa" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3748,11 +3768,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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Könyvjelzők táblája" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3760,32 +3780,32 @@ msgstr "" "Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, alapértelmezés: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Oszlopinformációs tábla" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "A MySQL-szerverhez csatlakozás tömörítése" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "A kapcsolat tömörítése" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "A szerverhez csatlakozás módja, hagyja meg a tcp értéket, ha nem biztos benne" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Csatlakozás típusa" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "A kontrollfelhasználó jelszava" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3793,19 +3813,19 @@ msgstr "" "Korlátozott jogokkal rendelkező, speciális MySQL felhasználó, bővebben a " "[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a] címen olvashat róla" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Kontrollfelhasználó" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "A táblák megszámolása az adatbázislista megjelenítésekor" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Táblák megszámolása" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3813,11 +3833,11 @@ msgstr "" "Hagyja üresen, ha nem akar Tervező támogatást, alapértelmezés: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Tervező tábla" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3826,29 +3846,29 @@ msgstr "" "[/a] és a [a@http://bugs.mysql.com/19588]MySQL hibabejelentőben[/a] olvashat " "róla" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Az INFORMATION_SCHEMA használatának letiltása" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Melyik PHP-kiterjesztés használandó, használja a mysqli kiterjesztést, ha " "támogatott" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Használandó PHP-kiterjesztés" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "A (PCRE) reguláris kifejezéssel megegyező adatbázisok elrejtése" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Adatbázisok elrejtése" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3856,31 +3876,31 @@ msgstr "" "Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek " "támogatására, alapértelmezés: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL-lekérdezések előzményeinek táblája" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Az állomás neve, ahol a MySQL-szerver fut" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "A szerver állomásneve" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Kijelentkezési URL" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "A csatlakozás jelszó nélküli megkísérlése" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Jelszó nélküli csatlakozás" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3896,30 +3916,30 @@ msgstr "" "akarja, a literális példányaik használatához, pl. használja a 'my\\_db' " "alakot, s ne a 'my_db' alakot" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Csak a kilistázott adatbázisok megjelenítése" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Hagyja üresen, ha nem a konfigurációs hitelesítést használja" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "A konfigurációs hitelesítés jelszava" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF-séma: pages table" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3930,22 +3950,22 @@ msgstr "" "oldalon. Hagyja üresen, ha nincs szükség a támogatására. Alapértelmezés: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "adatbázis neve" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "A port, melyen a MySQL-szerver figyel, hagyja üresen, ha az alapértelmezett" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "A szerver portja" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3953,19 +3973,19 @@ msgstr "" "Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/relation]relációs " "hivatkozás[/a] támogatás, alapértelmezés: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Relációs tábla" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "A meglévő adatbázisokat kiolvasó SQL-parancs" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES parancs" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3973,45 +3993,45 @@ 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:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Az egyszeri bejelentkezési munkamenet neve" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Az egyszeri bejelentkezés URL-címe" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "A szoftvercsatorna, melyen a MySQL-szerver figyel, hagyja üresen, ha az " "alapértelmezett" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "A szerver szoftvercsatornája" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "A MySQL-szerverhez csatlakozás tömörítése" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "SSL használata" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF-séma: table coordinates" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4023,53 +4043,53 @@ msgstr "" "A megjelenítendő mezők táblája, hagyja üresen, ha ne támogassa; " "alapértelmezés: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Megjelenítendő mezők táblája" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Utasítások" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4081,25 +4101,25 @@ msgstr "" "Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek " "támogatására, alapértelmezés: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL-lekérdezések előzményeinek táblája" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatikus helyreállítási mód" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4111,15 +4131,15 @@ msgstr "" "Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek " "támogatására, alapértelmezés: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "A konfigurációs hitelesítés felhasználóneve" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4127,11 +4147,11 @@ msgstr "" "Tiltsa le, ha tudja, hogy a pma_* táblák naprakészek. Ez megelőzi a " "kompatibilitási ellenőrzéseket, s ezáltal növeli a teljesítményt" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Részletes ellenőrzés" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4139,11 +4159,11 @@ msgstr "" "A szerver felhasználóbarát leírása. Hagyja üresen az állomásnév " "megjelenítéséhez." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "A szerver részletes neve" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4152,11 +4172,11 @@ msgstr "" "Meg kell-e jeleníteni egy felhasználó számára az "az összes (rekord) " "megjelenítése" gombot" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Az összes sor megjelenítésének engedélyezése" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4166,35 +4186,35 @@ 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "A jelszómódosító űrlap megjelenítése" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Az adatbázis létrehozása űrlap megjelenítése" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Nyitott táblák megjelenítése" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Szerkesztés/beszúrás módban a függvénymezők megjelenítése" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "A függvénymezők megjelenítése" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4202,35 +4222,35 @@ msgstr "" "Megjeleníti a [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "kimenetre mutató hivatkozást" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "A phpinfo() hivatkozás megjelenítése" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "A MySQL-szerver részletes adatainak megjelenítése" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Meghatározza, hogy meg kell-e jeleníteni a phpMyAdmin által generált SQL-" "lekérdezéseket" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Az SQL-lekérdezések megjelenítése" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Az adatbázis- és táblastatisztika megjelenítésének engedélyezése (pl. " "területhasználat)" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "A statisztika megjelenítése" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4238,11 +4258,11 @@ msgstr "" "Ha engedélyezettek az eszközleírások, s ha megadták az adatbázis " "megjegyzését, akkor ez tükrözi a megjegyzést és a valódi nevet" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Az adatbázis megjegyzésének megjelenítése a neve helyett" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4254,62 +4274,62 @@ msgstr "" "['LeftFrameTableSeparator'] utasítás alapján, ezért csak a mappát hívják " "úgy, mint az aliast, a táblanév változatlan marad." -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "A tábla megjegyzésének megjelenítése a neve helyett" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "A tábla megjegyzéseinek megjelenítése az eszközleírásokban" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 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 " "láthatóvá tétele" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "A zárolt táblák kihagyása" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Jelszó" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Felhasználónév:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4317,65 +4337,65 @@ msgstr "" "Javaslat adatbázisnévre az "Adatbázis létrehozása" űrlapon (ha " "lehet), vagy maradjon üres a szövegmező" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Új adatbázisnév javasolása" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR szövegterület oszlopai" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR szövegterület sorai" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Alapértelmezett tábla fül" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4387,37 +4407,37 @@ 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:487 +#: libraries/config/messages.inc.php:486 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:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "A szerveren lévő könyvtár, melybe feltöltheti az importálandó fájlokat" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Feltöltések könyvtára" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "A teljes adatbázisban történő keresés engedélyezése" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Adatbázis-kereső használata" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4427,15 +4447,15 @@ msgstr "" "sorainak megjelenítése. Egy utasítás által tartalmazható lekérdezések " "számának alapértelmezéseit lásd libraries/import.lib.php fájlban." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Részletes, több utasítás" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Új verzió ellenőrzése" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4443,7 +4463,7 @@ msgstr "" "A [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4472,74 +4492,74 @@ msgid "Signon authentication" msgstr "Az állomás hitelesítési sorrendje" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV a LOAD DATA használatával" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document munkafüzet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Egyéni szín" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Adatbázis exportálási beállításai" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Adatok" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel CSV adat" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document szöveges dokumentum" @@ -4585,7 +4605,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Események" @@ -4614,8 +4634,8 @@ msgid "Designer" msgstr "Tervező" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Jogok" @@ -4627,7 +4647,7 @@ msgstr "Eljárások" msgid "Return type" msgstr "Típus visszaadása" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4660,18 +4680,18 @@ msgid "Details..." msgstr "Részletek..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Jelszó megváltoztatása" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Nincs jelszó" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Újraírás" @@ -4694,8 +4714,8 @@ msgstr "Új adatbázis létrehozása" msgid "Create" msgstr "Létrehozás" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Nincs jog" @@ -4841,8 +4861,8 @@ msgid "Compression:" msgstr "Tömörítés" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Nincs" @@ -5016,7 +5036,7 @@ msgstr "Kulcs szerinti rendezés" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5051,8 +5071,8 @@ msgstr "Bináris tartalom megjelenítése" msgid "Show BLOB contents" msgstr "BLOB-tartalom megjelenítése" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Elrejtés" @@ -5070,49 +5090,49 @@ msgstr "Könyvjelzőkhöz hozzáadott lekérdezés végrehajtása" msgid "The row has been deleted" msgstr "A sor törlése megtörtént" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Leállít" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "lekérdezésben" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Megjelenített sorok:" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "összesen" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Módosítás" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Nyomtatási nézet (teljes szöveggel)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF séma megjelenítése" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Nem található a hivatkozás" @@ -5593,12 +5613,12 @@ msgid "Data dump options" msgstr "Az adatbázisok megjelenítésének beállításai" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "A tábla adatainak kiíratása" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Tábla szerkezet:" @@ -5651,9 +5671,9 @@ msgstr "Létező MIME-típusok" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Hoszt" @@ -5799,40 +5819,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Eljárások" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Függvények" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Megkötések a kiírt táblákhoz" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Megkötések a táblához" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "Tábla MIME-típusok" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "TÁBLA KAPCSOLATAI" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Eseményindítók" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Nézet szerkezete" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "A nézet helyettes szerkezete" @@ -5868,43 +5888,43 @@ msgstr "SQL-eredmény" msgid "Generated by" msgstr "Készítette" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Nincs adatbázis" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5956,7 +5976,7 @@ msgstr "A CSV bevitel %d. sorában a mezők száma érvénytelen." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tábla neve" @@ -6037,7 +6057,7 @@ msgid "Charset" msgstr "Karakterkészlet" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Bináris" @@ -6324,8 +6344,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Felhasználónév" @@ -6344,7 +6364,7 @@ msgid "Variable" msgstr "Változó" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Érték" @@ -6363,34 +6383,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Bármilyen felhasználó" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Szöveges mező használata" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Bármilyen hoszt" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Helyi" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Ez a hoszt" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Hoszt-tábla használata" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6649,11 +6669,11 @@ msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison" msgid "Columns" msgstr "Oszlopnevek" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" "A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára " @@ -6687,7 +6707,7 @@ msgstr "Csak megtekinthető" msgid "Location of the text file" msgstr "A szövegfájl helye" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "webszerver feltöltési könyvtár" @@ -6857,22 +6877,22 @@ msgstr "" "Ehhez az átalakításhoz nem érhető el leírás.
Kérdezze meg a szerzőtől, " "hogy mit csinál a(z) %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Tárolómotor" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "PARTITION definíció" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s mező hozzáadása" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7133,8 +7153,8 @@ msgstr "Egyéb alapbeállítások" msgid "Protocol version" msgstr "Protokoll verzió" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Felhasználó" @@ -7171,7 +7191,7 @@ msgstr "Hivatalos honlap" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7183,7 +7203,7 @@ msgstr "" "MySQL szerver most ezzel az alapbeállítással fut, behatolásra nyitott. " "Javítsa ezt a biztonsági rést." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7192,7 +7212,7 @@ msgstr "" "Ön engedélyezte az mbstring.func_overload funkciót a PHP konfigurációban. Ez " "a beállítás nem kompatibilis a phpMyAdminnal, és az adatsérüléssel járhat!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7203,7 +7223,7 @@ msgstr "" "tudja megfelelően felosztani a karakterláncokat, mely nem várt eredményhez " "vezethet." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7215,13 +7235,13 @@ msgstr "" "phpMyAdminban beállított cookie érvényességénél, Emiatt a bejelentkezése a " "phpMyAdminban beállítottnál előbb fog lejárni." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "A konfigurációs fájlnak egy titkos hozzáférési kódra (blowfish_secret) van " "szüksége." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7230,7 +7250,7 @@ msgstr "" "A parancsfájl által használt [code]config[/code] könyvtár még létezik a " "phpMyAdmin könyvtárában. Távolítsa el a phpMyAdmin beállítása után." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7239,14 +7259,14 @@ msgstr "" "A hivatkozott táblákkal történő munka kiegészítő funkciói inaktiválásra " "kerültek. Ha szeretné megtudni, hogy miért, kattintson %side%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7255,7 +7275,7 @@ msgstr "" "A PHP MySQL függvénytár %s-s verziója eltér a MySQL szerver %s-s " "verziójától. Ez kiszámíthatatlan viselkedést okozhat." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7607,117 +7627,117 @@ msgstr "Tárolómotorok" msgid "View dump (schema) of databases" msgstr "Adatbázis kiírás (séma) megtekintése" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "A GRANT kivételével minden jogot tartalmaz." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Engedélyezi új adatbázisok és táblák készítését." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Engedélyezi tárolt eljárások létrehozását." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Engedélyezi új táblák készítését." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Engedélyezi ideiglenes táblák készítését." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Engedélyezi új nézetek létrehozását." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Engedélyezi az adatok törlését." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Engedélyezi az adatbázisok és táblák eldobását." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Engedélyezi a táblák eldobását." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Engedélyezi a tárolt eljárások végrehajtását." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "A privilégium táblák újratöltése nélkül engedélyezi a felhasználók és jogok " "hozzáadását." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Engedélyezi indexek készítését és törlését." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Engedélyezi az adatok beírását és megváltoztatását." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Korlátozza a felhasználó által óránként megnyitható új kapcsolatok számát." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Korlátozza a felhasználó által a kiszolgálóra óránként küldhető lekérdezések " "számát." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7725,62 +7745,62 @@ msgstr "" "Korlátozza a felhasználó által óránként végrehajtható, bármelyik táblát vagy " "adatbázist módosító parancsok számát." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nem valósult meg ebben a MySQL verzióban" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Engedélyezi a szerver beállításainak újratöltését, és a szerver " "gyorsítótárának törlését." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő " "helyek." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "A kisegítő helyek másolásához szükséges." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Engedélyezi az adatok olvasását." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Hozzáférést ad az adatbázisok teljes listájához." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Engedélyezi a szerver leállítását." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7791,158 +7811,158 @@ msgstr "" "globális változók beállítása, vagy más felhasználók folyamatainak " "megszüntetése." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Eseményindítók létrehozásának és eldobásának engedélyezése" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Engedélyezi az adatok megváltoztatását." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Nincsenek jogok." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nincs" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Megjegyzés: a MySQL jognevek az angolból származnak." -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globális jogok" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Adminisztráció" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Erőforrás-korlátozások" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Bejelentkezési adatok" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nincs jelszó megváltoztatás" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nem található(k) a felhasználó(k)." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "%s felhasználó már létezik!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Ön frissítette %s jogait." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s jogainak visszavonása megtörtént" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "%s jelszavának megváltoztatása sikerült." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "%s törlése" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nincs törlésre kijelölt felhasználó!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "A jogok újratöltése" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "A kiválasztott felhasználók törlése sikerült." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Jogok szerkesztése" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Visszavonás" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Bármi" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Felhasználók áttekintése" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Engedélyezés" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Új felhasználó hozzáadása" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "A kijelölt felhasználók törlése" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "A felhasználók összes jogának visszavonása, majd törlése." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7955,94 +7975,94 @@ msgstr "" "használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %" "stöltse be újra a jogokat%s a folytatás előtt." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Oszlopspecifikus jogok" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Jogok hozzáadása a következő adatbázison" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "A _ és a % karakterhelyettesítőt \\ jellel kell lezárni, hogy " "szövegkonstansként lehessen őket használni" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Jogok hozzáadása a következő táblán:" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... a régiek megőrzése." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... a régiek törlése a felhasználói táblákból." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... az összes aktív jog visszaállítása a régiekből, majd törlés." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Adatbázis a felhasználó számára" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nincs" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globális" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "adatbázis-specifikus" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "karakterhelyettesítő" @@ -9065,7 +9085,7 @@ msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" msgid "Could not connect to the target" msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9590,12 +9610,12 @@ msgstr "Megjelenítés SQL lekérdezésként" msgid "Validated SQL" msgstr "SQL érvényesítése" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Név" @@ -9604,74 +9624,74 @@ msgstr "Név" msgid "Table %1$s has been altered successfully" msgstr "A(z) %1$s tábla módosítása sikerült" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Függvény" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "A hossza miatt
lehet, hogy ez a mező nem szerkeszthető " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "A BLOB-raktár hivatkozásának eltávolítása" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Bináris - nem szerkeszthető" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Feltöltés a BLOB-raktárba" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Megjelenítés SQL lekérdezésként" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "és utána" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "A TAB billentyűvel értékről értékre lépkedhet, ill. a CTRL+nyilakkal bárhová " "léphet." -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9782,12 +9802,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Már létezik nevű %s tábla!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "A(z) %1$s tábla elkészült." @@ -10283,11 +10303,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Leírás" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Önnek nincs elég joga ahhoz, hogy épp most itt tartózkodjon!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "A profil frissítése megtörtént." diff --git a/po/id.po b/po/id.po index 730bab7d36..3271aa48c2 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-09-16 05:35+0200\n" "Last-Translator: Azhari Harahap \n" "Language-Team: indonesian \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Tampilkan semua" @@ -38,17 +38,20 @@ msgstr "" "induknya atau pilihan keamanan pada browser Anda melarang untuk mengupdate " "dengan cara Cross-Window" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cari" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Cari" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "Komentar Database: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Komentar tabel" @@ -135,7 +138,7 @@ msgstr "Komentar tabel" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -148,8 +151,8 @@ msgstr "Kolom" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "Jenis" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Kosong" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "Link ke" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "Komentar" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Tidak" @@ -222,10 +225,10 @@ msgstr "Tidak" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "Pilih semua" msgid "Unselect All" msgstr "Unselect semua" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Nama database kosong!" @@ -266,80 +269,80 @@ msgstr "Nama database %s telah diubah menjadi %s" msgid "Database %s has been copied to %s" msgstr "Database %s telah disalin ke %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Ubah nama database menjadi" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Perintah" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Ubah nama database menjadi" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Database %s telah dihapus." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Database tidak ditemukan" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Salin database ke" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Struktur saja" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data saja" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CIPTAKAN DATABASE sebelum menyalin" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Menambahkan nilai AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Menambahkan pembatas" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Pindah ke database yang disalin" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Penyortiran" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -351,24 +354,24 @@ msgstr "" "Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. " "Untuk mengetahui sebabnya silakan klik %sdisini%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Skema Relational" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -379,33 +382,33 @@ msgstr "Baris" msgid "Size" msgstr "Ukuran" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "sedang digunakan" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Pembuatan" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Update terakhir" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Pemeriksaan terakhir" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -413,7 +416,7 @@ msgid_plural "%s tables" msgstr[0] "tabel %s" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -443,7 +446,7 @@ msgid "Descending" msgstr "Urutan menurun" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Tampilkan" @@ -464,8 +467,8 @@ msgid "Del" msgstr "Hapus" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Atau" @@ -533,17 +536,19 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s catatan dalam tabel %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Browse" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -585,69 +590,30 @@ msgstr "Cari dalam tabel:" msgid "Inside column:" msgstr "Di dalam kolom:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Sisipkan" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktur" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Hapus" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Mengosongkan" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s telah dikosongkan" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Pandangan %s telah dibubarkan" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s telah dihapus" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Pelacakan aktif" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -656,87 +622,111 @@ msgstr "" "Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %" "sdokumentasi%s" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Gambarkan" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Tiruan" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Jumlah" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s adalah mesin penyimpan utama pada server MySQL ini." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "yang ditandai:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Pilih semua" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Balik pilihan" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Periksa Overheaded" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Ekspor" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Pandangan cetak" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Mengosongkan" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Hapus" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Periksa tabel" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimasikan tabel" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Perbaiki tabel" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analisa tabel" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Kamus Data" @@ -744,13 +734,13 @@ msgstr "Kamus Data" msgid "Tracked tables" msgstr "Tabel-tabel yang dilacak" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -776,8 +766,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Aksi" @@ -820,12 +810,12 @@ msgstr "Lacak tabel" msgid "Database Log" msgstr "Log Database" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -900,7 +890,7 @@ msgstr "Penyimpanan telah dihapus." msgid "Showing bookmark" msgstr "Tampilkan bookmark" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -923,7 +913,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Kembali" @@ -1004,11 +994,11 @@ msgstr "Nama Host harus diisi!" msgid "The user name is empty!" msgstr "Nama pengguna masih kosong!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Kata Sandi kosong!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Kata Sandi tidak sama!" @@ -1114,116 +1104,122 @@ msgid "Searching" msgstr "Cari" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "Pencarian SQL" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "Pencarian SQL" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Mesin" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Tampilan relasi" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Relasi internal" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Kesalahan: Relasi tidak ditambahkan." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Kesalahan: relasi sudah ada." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Kesalahan menyimpan koordinat untuk Perancang." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Ciri-ciri dari General Relation" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Tidak aktif" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pilih Field untuk ditampilkan" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Menghasilkan kata sandi" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Menghasilkan" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ubah Kata Sandi" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Senin" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "tanpa" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Sebelumnya" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1231,96 +1227,96 @@ msgid "Next" msgstr "Berikutnya" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Maret" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "April" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mei" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Juni" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Juli" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Agustus" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Oktober" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Januari" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Februari" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Maret" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1328,178 +1324,178 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Agustus" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nopember" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Desember" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Minggu" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Senin" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jumat" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Minggu" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Senin" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Selasa" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Rabu" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Kamis" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Jumat" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sabtu" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Minggu" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Senin" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Selasa" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rabu" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kamis" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jumat" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sabtu" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1576,9 +1572,9 @@ msgid "Comment" msgstr "Komentar" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Ubah" @@ -1599,15 +1595,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Database" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -1850,6 +1846,32 @@ msgstr "Unduh file" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Sisipkan" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktur" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1916,7 +1938,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1970,7 +1992,7 @@ msgstr "MySQL menyatakan: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Terangkan SQL" @@ -1982,11 +2004,11 @@ msgstr "Melewati keterangan SQL" msgid "Without PHP Code" msgstr "Kode PHP tidak ditemukan" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Ciptakan kode PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Menyegarkan" @@ -1995,7 +2017,7 @@ msgstr "Menyegarkan" msgid "Skip Validate SQL" msgstr "Melewati pengesahan (validation) SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Mengesahkan (validate) SQL" @@ -2095,7 +2117,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2119,7 +2141,7 @@ msgid "Select from the web server upload directory %s:" msgstr "direktori upload pada web-server" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" "Direktori yang telah ditetapkan untuk meng-upload tidak dapat dihubungi" @@ -2127,7 +2149,7 @@ msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Struktur" @@ -2258,7 +2280,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2268,15 +2290,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Simpan" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Reset" @@ -2398,138 +2420,134 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Ubah nama database menjadi" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Edit baris berikut" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Tampilkan ciri-ciri" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Kirimkan ke" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Penyusunan karakter dalam file:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Kompresi" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2539,71 +2557,71 @@ msgstr "Kompresi" msgid "Put columns names in the first row" msgstr "Letakkan nama Fields pada baris pertama" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Field ditutup dengan" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Field dikembalikan oleh" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Menggantikan NULL dengan" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Garis diputuskan oleh" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Garis diputuskan oleh" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edisi Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Konvensi nama file" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Konvensi nama file" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Konvensi nama file" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2611,200 +2629,200 @@ msgstr "Konvensi nama file" msgid "Dump table" msgstr "tabel %s" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Masukkan judul halaman tabel" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Judul halaman" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Lanjutan dari judul halaman tabel" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Kunci nama" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Tipe MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Tabel Relasi" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Jenis Ekspor" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Timpahkan (Overwrite) file(s) yang ada" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Konvensi nama file" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Nama tabel dan nama field dalam tanda kutip biasa" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Tanggal Penciptaan/Update/Pemeriksaan" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Gunakan perintah INSERT memperlambat" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Tanpa pemeriksaan kunci asing" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Gunakan perintah INSERT dengan mengabaikan kesalahan" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Ekspor tabel" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Menyertakan ekspor dalam transaksi" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy #| msgid "Export contents" msgid "Export time in UTC" msgstr "Ekspor isi" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "Data CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Menghasilkan" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2812,206 +2830,206 @@ msgstr "" msgid "Import" msgstr "Ekspor" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Impor file" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabel" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Halaman no.:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "Pencarian SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "Pencarian SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "Pencarian SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Sejarah SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3019,282 +3037,282 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tabel" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Gunakan text field" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Peringatan" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Ganti data tabel dengan file" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Letakkan nama Fields pada baris pertama" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Tampilkan komentar kolom" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3302,431 +3320,431 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Batas dari sumber" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Urutkan tabel berdasarkan" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Perbaiki proses" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Home direktori data" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Koneksi" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Tabel tidak ditemukan" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Defragmentasikan tabel" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Database tidak ditemukan" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "Pilihan Server" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3735,301 +3753,301 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Database" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "ID Server" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Perbaiki tabel" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Pilihan Server" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Tampilkan komentar kolom" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Keterangan" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Modus restorasi otomatis" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "Tampilkan tabel" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Tampilkan pencarian yang lengkap" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Statistik Baris" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4037,121 +4055,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Kata Sandi" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Nama Pengguna" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "Tambahkan/Hapus kolom" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Default" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4159,58 +4177,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4231,74 +4249,74 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Warna kustom" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Pilihan cara untuk mengekspor Database" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Data" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV untuk data MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4337,7 +4355,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Kejadian" @@ -4366,8 +4384,8 @@ msgid "Designer" msgstr "Perancang" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Hak Akses" @@ -4379,7 +4397,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4411,18 +4429,18 @@ msgid "Details..." msgstr "Rincian..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Ubah Kata Sandi" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Kata Sandi belum ditetapkan" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ketik ulang" @@ -4445,8 +4463,8 @@ msgstr "Ciptakan database baru" msgid "Create" msgstr "Ciptakan" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Tidak ada Hak Akses (privilege)" @@ -4585,8 +4603,8 @@ msgid "Compression:" msgstr "Kompresi" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "tanpa" @@ -4744,7 +4762,7 @@ msgstr "Urut berdasarkan kunci" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4781,8 +4799,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4800,49 +4818,49 @@ msgstr "Eksekusikan pencarian dengan mengikuti penunjuk halaman" msgid "The row has been deleted" msgstr "Baris telah dihapus" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Tutup" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "dalam susunan pemeriksaan" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Tampilan baris" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "pencarian membutuhkan waktu %01.4f detik" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Ubah" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Pandangan cetak (dengan teks lengkap)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Tampilkan skema PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Link tidak ditemukan" @@ -5283,12 +5301,12 @@ msgid "Data dump options" msgstr "Pilihan cara untuk mengekspor Database" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Dumping data untuk tabel" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktur dari tabel" @@ -5345,9 +5363,9 @@ msgstr "Tipe MIME yang tersedia" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -5493,43 +5511,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "Proses Aktif" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Fungsi" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Ketidakleluasaan untuk tabel" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "TIPE MIME UNTUK TABEL" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELASI UNTUK TABEL" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Trigger" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Struktur saja" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5564,43 +5582,43 @@ msgstr "Hasil SQL" msgid "Generated by" msgstr "Diciptakan oleh" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL balikkan hasil kosong (a.k. baris yang kosong)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Database tidak ditemukan" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5651,7 +5669,7 @@ msgstr "" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nama tabel" @@ -5734,7 +5752,7 @@ msgid "Charset" msgstr "Perangkat karakter (Charset)" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binari" @@ -6020,8 +6038,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Nama pengguna" @@ -6040,7 +6058,7 @@ msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Nilai" @@ -6059,34 +6077,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Setiap pengguna" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Gunakan text field" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Setiap host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Host yang ini" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Gunakan Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6340,11 +6358,11 @@ msgstr "Melaksanakan perintah SQL pada database %s" msgid "Columns" msgstr "Nama kolom" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Simpan pencarian SQL ini" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses simpanan ini" @@ -6376,7 +6394,7 @@ msgstr "Hanya melihat" msgid "Location of the text file" msgstr "dari File" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "direktori upload pada web-server" @@ -6546,22 +6564,22 @@ msgstr "" "Tidak ada deskripsi untuk transformasi ini.
Mohon ditanyakan kepada " "penulis tentang artinya %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Mesin Penyimpan" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Menambahkan %s field(s)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6797,8 +6815,8 @@ msgstr "Ciri-ciri dari General Relation" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Pengguna" @@ -6836,7 +6854,7 @@ msgstr "Homepage resmi phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6849,7 +6867,7 @@ msgstr "" "penyerangan. Disarankan untuk memperbaiki kelemahan keamanan (security hole) " "ini." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6858,7 +6876,7 @@ msgstr "" "Fungsi mbstring.func_overload aktif pada konfigurasi PHP Anda. Pilihan ini " "tidak cocok dengan phpMyAdmin dan mampu merusak sebagian data!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6869,7 +6887,7 @@ msgstr "" "baris-baris dengan cara yang benar. Hal ini mampu mengakibatkan hasil yang " "tidak diinginkan." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6877,12 +6895,12 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "File konfigurasi membutuhkan susunan kata-kata rahasia (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6892,7 +6910,7 @@ msgstr "" "di direktori phpMyAdmin Anda. Anda harus menghapus nya setelah phpMyAdmin di " "konfigurasi." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6901,21 +6919,21 @@ msgstr "" "Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. " "Untuk mengetahui sebabnya silakan klik %sdisini%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7249,117 +7267,117 @@ msgstr "Mesin Penyimpan" msgid "View dump (schema) of databases" msgstr "Tampilkan Dump (skema) dari database" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Menggunakan seluruh Hak Istimewa (Privileges) selain GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Mengizinkan untuk merubah struktur dari tabel yang ada." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Mengizinkan perubahan dan penghapusan dari Routines yang tersimpan." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Mengizinkan untuk menciptakan database dan tabel baru." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Mengizinkan penciptaan Routines yang akan disimpan." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Mengizinkan untuk menciptakan tabel baru." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Mengizinkan untuk menciptakan tabel yang bersifat temporer." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Mengizinkan penciptaan, penghapusan dan perubahan account pengguna." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Mengizinkan untuk menciptakan pandangan baru." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Mengizinkan untuk hapus data." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Mengizinkan untuk hapus database dan tabel." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Mengizinkan untuk hapus tabel." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Mengizinkan eksekusi Routines yang tersimpan." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Mengizinkan untuk impor data dari file dan ekspor data kedalam file." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Mengizinkan untuk menambah pengguna dan Hak Istimewa (Privileges) tanpa " "harus me-reload ulang tabel Hak Istimewa." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Mengizinkan untuk tambah dan ganti data." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap " "pengguna dalam batas waktu satu jam." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7367,64 +7385,64 @@ msgstr "" "Membatasi jumlah perintah untuk merubah sebuah tabel atau database untuk " "setiap pengguna dalam batas waktu satu jam." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Tidak ada efek dalam versi MySQL yang digunakan." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Mengizinkan untuk reload stelan dari server dan untuk flush cache dari " "server." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Digunakan untuk replikasi dari slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Mengizinkan untuk baca data." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Memberi akses ke seluruh daftar database." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Mengizinkan untuk shut-down server." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7434,162 +7452,162 @@ msgstr "" "diperlukan untuk hampir semua operasi administratif seperti stelan variabel " "global atau untuk mematikan sebuah Thread yang dimiliki oleh pengguna lain." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Mengizinkan untuk ubah data." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Tanpa Hak Istimewa (Privileges)." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "tanpa" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Hak (privileges) khusus terhadap tabel" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Catatan: Nama privilege MySQL dalam bahasa Ingris " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Hak Istimewa (Privileges) Global" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Hak (privileges) khusus terhadap Database" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrasi" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Batas dari sumber" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas " "yang telah ditentukan." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informasi Login" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Jangan ubah Kata Sandi" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Pengguna tidak ditemukan." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Hak Akses (privilege) untuk %s telah di-update." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Hak akses untuk %s telah dicabut" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Sukses mengubah Kata Sandi untuk %s ." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Menghapus %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reload Hak Istimewa (Privileges)" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Sukses menghapus Pengguna yang dipilih." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Sukses reload Hak Istimewa (Privileges)." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Ubah hak akses (privilege)" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Cabut" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Setiap" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Pandangan Umum Pengguna" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Izin" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Menambahkan pengguna baru" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Hapus pengguna yang dipilih" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cabut seluruh Hak Istimewa (Privileges) dari pengguna, lantas hapus pengguna " "tsb. dari daftar tabel pengguna." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7603,94 +7621,94 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" "Pengguna yang dipilih tidak ditemukan pada tabel hak (privilege table)." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Hak (privileges) khusus terhadap kolum" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Menambahkan hak (privileges) pada database berikut" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Wildcard _ dan % sebaiknya diakhiri dengan tanda \\ untuk mengunakannya " "secara harfiah" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Menambahkan hak (privileges) pada tabel berikut" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Ubah informasi Login / Salip pengguna" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Ciptakan pengguna baru dengan hak-hak yang sama dan ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... mempertahankan yang lama." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... hapus yang lama dari User Table." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... cabut seluruh hak yang aktif, kemudian hapuskan yang lama." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... hapuskan yang lama dari User Table, kemudian reload hak-hak." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Database untuk pengguna" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "tanpa" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Buat database dengan nama yang sama dan beri semua hak" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Berikan semua hak untuk database "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Pengguna memiliki akses ke "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "database-spesifik" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "wildcard" @@ -8589,7 +8607,7 @@ msgstr "Tidak dapat terhubung ke sumber" msgid "Could not connect to the target" msgstr "Tidak dapat terhubung ke target" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8999,12 +9017,12 @@ msgstr "" msgid "Validated SQL" msgstr "Mengesahkan (validate) SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Judul" @@ -9013,74 +9031,74 @@ msgstr "Judul" msgid "Table %1$s has been altered successfully" msgstr "Sukses menghapus Pengguna yang dipilih." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Fungsi" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "" " Disebabkan ukuran panjangnya,
field ini tidak dapat di-edit ulang. " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Hapus Referensi Repositori BLOB" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binari - jangan di-edit" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Upload ke repositori BLOB" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Sisipkan sebagai baris baru" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "selanjutnya" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "kembali" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "sisipkan baris baru berikutnya" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Edit baris berikut" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9190,12 +9208,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabel %s telah dihapus" @@ -9689,11 +9707,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Deskripsi" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Hak Akses Anda untuk melanjut tidak cukup!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil pengguna telah di-update." diff --git a/po/it.po b/po/it.po index 59bc56981c..02b5885ebd 100644 --- a/po/it.po +++ b/po/it.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" -"PO-Revision-Date: 2010-09-16 22:55+0200\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" +"PO-Revision-Date: 2010-09-24 10:00+0200\n" "Last-Translator: Giovanni Uccio \n" "Language-Team: italian \n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Mostra tutti" @@ -39,17 +39,20 @@ msgstr "" "bloccando gli aggiornamenti fra browsers a causa di qualche impostazione di " "sicurezza" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "Cerca" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -123,7 +126,7 @@ msgid "Database comment: " msgstr "Commento al Database: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Commenti sulla tabella" @@ -134,7 +137,7 @@ msgstr "Commenti sulla tabella" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -147,8 +150,8 @@ msgstr "Nomi delle colonne" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -160,13 +163,13 @@ msgstr "Tipo" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -185,8 +188,8 @@ msgid "Links to" msgstr "Collegamenti a" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -202,10 +205,10 @@ msgstr "Commenti" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "No" @@ -221,10 +224,10 @@ msgstr "No" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -251,7 +254,7 @@ msgstr "Seleziona tutto" msgid "Unselect All" msgstr "Deseleziona tutto" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Il nome del DataBase è vuoto!" @@ -265,77 +268,77 @@ msgstr "Il DataBase %s è stato rinominato in %s" msgid "Database %s has been copied to %s" msgstr "Il Database %s è stato copiato in %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Rinomina il DataBase in" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Comando" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Rinomina il DataBase in" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Il Database %s è stato eliminato." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Calcella il database (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Copia il Database in" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Solo struttura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struttura e dati" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Solo dati" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prima di copiare" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Aggiungi %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Aggiungi vincoli" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Passare al Database copiato" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -344,22 +347,22 @@ msgstr "" "Le caratteristiche aggiuntive sono state disattivate per funzionare con le " "tabelle linkate. Per scoprire perché clicca %squi%s." -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "Modifica o esporta schema relazionale" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabella" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -370,33 +373,33 @@ msgstr "Righe" msgid "Size" msgstr "Dimensione" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "in uso" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Creazione" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Ultimo cambiamento" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Ultimo controllo" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -405,7 +408,7 @@ msgstr[0] "%s tabella(e)" msgstr[1] "%s tabella(e)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -435,7 +438,7 @@ msgid "Descending" msgstr "Decrescente" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Mostra" @@ -456,8 +459,8 @@ msgid "Del" msgstr "Elimina" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Oppure" @@ -519,24 +522,25 @@ msgid "Search results for \"%s\" %s:" msgstr "Cerca i risultati per \"%s\" %s:" #: db_search.php:248 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" +#, php-format msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" -msgstr[0] "%s corrisponde/ono nella tabella %s" +msgstr[0] "%s corrispondenze nella tabella %s" msgstr[1] "%s corrisponde/ono nella tabella %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Mostra" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -548,8 +552,7 @@ msgid "Delete" msgstr "Elimina" #: db_search.php:273 -#, fuzzy, php-format -#| msgid "Total: %s match(es)" +#, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totale: %s corrispondenza/e" @@ -579,69 +582,30 @@ msgstr "Nella/e tabella/e:" msgid "Inside column:" msgstr "Campi contenuti:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Inserisci" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struttura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Elimina" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Svuota" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "La tabella %s è stata svuotata" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "La vista %s è stata eliminata" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "La tabella %s è stata eliminata" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Il tracking è attivo." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Il tracking non è attivo." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -650,87 +614,111 @@ msgstr "" "Questa visuale ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Vista" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replicazione" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Totali" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Se selezionati:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Seleziona tutti" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Deseleziona tutti" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Controllo addizionale" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Esporta" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Svuota" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Elimina" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Controlla tabella" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Ottimizza tabella" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Ripara tabella" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizza tabella" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -738,13 +726,13 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "Controlla tabelle" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -770,8 +758,8 @@ msgstr "Stato" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Azione" @@ -814,12 +802,12 @@ msgstr "Controlla tabella" msgid "Database Log" msgstr "Log database" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "Valore per la colonna \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "Inserisci ogni valore in un campo separato" @@ -902,7 +890,7 @@ msgstr "Il bookmark è stato cancellato." msgid "Showing bookmark" msgstr "Mostrando i segnalibri" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Segnalibro %s creato" @@ -930,7 +918,7 @@ msgstr "" "che non verrà aumentato il parametro php time limits." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Indietro" @@ -1011,11 +999,11 @@ msgstr "Il nome di host è vuoto!" msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "La password non coincide!" @@ -1106,102 +1094,108 @@ msgid "Searching" msgstr "Cerca" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "query SQL" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "query SQL" + +#: js/messages.php:86 +#, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr "Inline" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relazione cancellata" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Relazione \"FOREIGN KEY\" aggiunta" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Aggiunte relazioni internet" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Errore: relazione non aggiunta." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Errore: relazione già esistente." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Errore nel salvare le coordinate per il Designer." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Caratteristiche Generali di Relazione" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Disabilitata" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Seleziona la chiave primaria o una chiave univoca" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Scegli il campo da mostrare" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "Genera Password" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genera" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "Cambia password" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Fatto" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "Precedente" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1209,231 +1203,231 @@ msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "Oggi" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "Gennaio" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "Febbraio" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "Marzo" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "Aprile" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Maggio" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "Giugno" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "Luglio" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "Agosto" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "Setttembre" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "Ottobre" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "Novembre" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "lug" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "ago" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "set" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "ott" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "dic" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "Ora" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "Minuto" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "Secondo" @@ -1506,9 +1500,9 @@ msgid "Comment" msgstr "Commenti" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Modifica" @@ -1531,15 +1525,15 @@ msgstr "" "Gli indici %1$s e %2$s sembrano essere uguali e andrebbero, possibilmente, " "essere rimossi." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Database" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Errore" @@ -1785,6 +1779,32 @@ msgstr "Scarica file" msgid "Could not open file: %s" msgstr "Non riesco ad aprire il file: %s" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Inserisci" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struttura" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "Statistiche query" @@ -1851,7 +1871,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome host per il server %1$s non valido. Controlla la tua configurazione." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1905,7 +1925,7 @@ msgstr "Messaggio di MySQL: " msgid "Failed to connect to SQL validator!" msgstr "Non sono riuscito a connettermi all'SQL Validator!" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Spiega SQL" @@ -1917,11 +1937,11 @@ msgstr "Non Spiegare SQL" msgid "Without PHP Code" msgstr "senza codice PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Crea il codice PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Aggiorna" @@ -1930,7 +1950,7 @@ msgstr "Aggiorna" msgid "Skip Validate SQL" msgstr "Non Validare SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Valida SQL" @@ -2028,7 +2048,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2052,14 +2072,14 @@ msgid "Select from the web server upload directory %s:" msgstr "directory di upload del web-server" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "struttura" @@ -2185,7 +2205,7 @@ msgid "Set value: %s" msgstr "Imposta valore: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Ripristinare valori predefiniti" @@ -2195,15 +2215,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Salva" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Riavvia" @@ -2327,146 +2347,142 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Opzioni di visualizzazione tabelle" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Rinomina il DataBase in" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Server predefinito" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Rinomina il DataBase in" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Mostra contenuti binati come esadecimali" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Mostra contenuti binati come esadecimali" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Modifica il record successivo" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Mostra Caratteristiche" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Ignora errori" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "Mostra le icone per messaggi di informazone, errore ed avviso" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Ignora errori" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Salva con nome..." -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Set di caratteri del file:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compressione" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2476,71 +2492,71 @@ msgstr "Compressione" msgid "Put columns names in the first row" msgstr "Mette i nomi delle colonne alla prima riga" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Campo composto da" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Campo impedito da" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Sostituisci NULL con" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linee terminate da" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Linee terminate da" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edizione Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Nome file template" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Nome file template" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Nome file template" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2548,421 +2564,421 @@ msgstr "Nome file template" msgid "Dump table" msgstr "%s tabella(e)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Includi sottotitolo della tabella" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Sottotitolo della tabella" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Include table caption" msgid "Continued table caption" msgstr "Includi sottotitolo della tabella" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Chiave etichetta" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "tipo MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relazioni" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export Method:" msgid "Export method" msgstr "Metodo di esportazione:" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Sovrascrivi file(s) esistente/i" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Nome file template" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Modo di compatibilità SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "Sintassi da utilizzare nell'inserimento dei dati" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Creazione/Aggiornamento/Controllo dati" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy #| msgid "Delayed inserts" msgid "Use delayed inserts" msgstr "Inserimento ritardato" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Disabilita i controlli sulle chiavi straniere" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Delayed inserts" msgid "Use ignore inserts" msgstr "Inserimento ritardato" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Lunghezza massima di una query creata" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Esporta" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Includi export in una transazione" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy #| msgid "Export contents" msgid "Export time in UTC" msgstr "Esporta contenuti" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 #, fuzzy msgid "Force SSL connection" msgstr "Connessione non sicura" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 #, fuzzy msgid "Customize browse mode" msgstr "Personalizza frame principale" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Personalizza le opzioni di esportazione" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 #, fuzzy msgid "Customize edit mode" msgstr "Personalizza frame principale" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "Importa file" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "Personalizza le opzioni di esportazione" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Caratteristiche" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Genera" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importa" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Importa file" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 #, fuzzy msgid "Customize default common import options" msgstr "Personalizza le opzioni di esportazione" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Importa / esporta" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" "Imposta le opzioni di compressione e cartelle per l'esportazione e " "l'importazione" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Opzioni di visualizzazione dei Database" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Frame di navigazione" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Personalizza l'aspetto del frame di navigazione" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servers" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Opzioni di visualizzazione dei server" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabelle" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Opzioni di visualizzazione tabelle" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Testo nel formato Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Numero pagina:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Finestra della Query" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "Personalizza le opzioni di esportazione" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Sicurezza" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Impostazioni di base" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Tipo di autenticazione" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Tipo di autenticazione" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Configurazione del server" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Inserisci i parametri di connessione al server" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration" msgid "Configuration storage" msgstr "Configurazione" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Personalizza le opzioni di esportazione" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "Personalizza le opzioni di esportazione" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Personalizza frame di navigazione" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Personalizza frame principale" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "query SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "query SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "query SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Storico dell'SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2970,70 +2986,70 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Avvio" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Personalizza la pagina di avvio" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Schede" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "Campi di testo" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 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:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Testo! testo" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Attenzione" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3044,184 +3060,184 @@ msgstr "" "essere troppo vicino al tempo limite. Questo potrebbe essere un buon modo di " "importare grandi file, tuttavia potrebbe interrompere la transazione." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignora le righe duplicate" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Sostituisci i dati della tabella col file" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Formato del file importato" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Usa LOCAL keyword" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Mette i nomi delle colonne alla prima riga" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Non importare righe vuote" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Importa valute ($5.00 to 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importa percentuali come propri decimali (12.00% to .12)" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Numero di record (query) da saltare a partire dall'inizio" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non usare AUTO_INCREMENT per il valore zero" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "Il numero di righe ordinate." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Mostra logo nel frame di sinistra" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Visualizza logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 msgid "Display table filter" msgstr "Visualizza filtri colonne" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 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:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Nome file template" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Visualizza i database in un albero" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Usa versione leggera" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, fuzzy msgid "" "Maximum number of characters shown in any non-numeric column on browse view" @@ -3229,32 +3245,32 @@ msgstr "" "Maximal number of Chars showed in any non-numeric field on browse view. Can " "be turned off by a toggle button on the browse page." -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3262,53 +3278,53 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "Nessun database" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 #, fuzzy msgid "" "Number of rows displayed when browsing a result set. If the result set " @@ -3318,19 +3334,19 @@ msgstr "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, Previous/Next links will be shown." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 #, fuzzy msgid "" "Disable the default warning that is displayed if mcrypt is missing for " @@ -3340,361 +3356,361 @@ msgstr "" "variabile su TRUE: quando fatto questo messaggio non sarà più " "visualizzato." -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Limite memoria" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Mostra/nascondi il menù di sinistra" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Altera tabella ordinata per" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 #, fuzzy msgid "Missing phpMyAdmin configuration storage tables" msgstr "Documentazione di phpMyAdmin" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Show binary contents" msgid "Protect binary columns" msgstr "Mostra contenuti binari" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "Altezza finestra query (in pixels)" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "Altezza finestra query" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "Larghezza finestra query (in pixel)" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "Larghezza finestra query" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Repeat the headers every X cells, or 0 to deactivate." -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Home directory dei dati" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy msgid "Host authorization order" msgstr "Tipo di autenticazione" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy msgid "Host authorization rules" msgstr "Autentificazione hardware fallita" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Metodo di autenticazione da usare" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Tipo di autenticazione" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 #, fuzzy msgid "Compress connection" msgstr "Connessione non sicura" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Tipo di connessione" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Nessuna Tabella" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Deframmenta la tabella" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "Estensioni PHP" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Nessun database" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "nome server" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3703,241 +3719,241 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nome database" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "ID del server" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Ripara tabella" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Scelta del server" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Visualizzazione commenti delle colonne" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Istruzioni" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Modalità di ripristino automatico" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Verbose check" msgstr "Controllo versione" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "" "Defines whether or not type fields should be initially displayed in edit/" @@ -3946,63 +3962,63 @@ msgstr "" "Defines whether MySQL functions fields should be displayed or not in edit/" "insert mode." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Mostra le tabelle aperte" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Mostra query complete" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Statistiche righe" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4010,122 +4026,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Mostra le tabelle aperte" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Password" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Nome utente:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "Aggiungi/Cancella campo" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "Rinomina il DataBase in" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4133,59 +4149,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "Home directory dei dati" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Controlla l'ultima versione" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4212,75 +4228,75 @@ msgid "Signon authentication" msgstr "Modalità di autenticazione 'signon'" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Foglio di calcolo nel formato Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Customization" msgid "Custom" msgstr "Personalizzazione" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "Opzioni di visualizzazione tabelle" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Dati" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV per dati MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Testo nel formato Open Document" @@ -4319,7 +4335,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP." #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Eventi" @@ -4348,8 +4364,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegi" @@ -4361,7 +4377,7 @@ msgstr "Routines" msgid "Return type" msgstr "Tipo di risultato" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4391,18 +4407,18 @@ msgid "Details..." msgstr "Dettagli..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Cambia password" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Nessuna Password" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Reinserisci" @@ -4423,8 +4439,8 @@ msgstr "Crea un nuovo database" msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Nessun Privilegio" @@ -4557,8 +4573,8 @@ msgid "Compression:" msgstr "Compressione" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Nessuno" @@ -4739,7 +4755,7 @@ msgstr "Ordina per chiave" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4774,8 +4790,8 @@ msgstr "Mostra contenuti binari" msgid "Show BLOB contents" msgstr "Mostra contenuti BLOB" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Nascondi" @@ -4793,49 +4809,49 @@ msgstr "Esegue la query dalle preferite" msgid "The row has been deleted" msgstr "La riga è stata cancellata" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Rimuovi" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "nella query" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Visualizzazione record " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "Totali" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Modifica" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Risultato delle operazioni di Query" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Vista stampa (con full text)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostra lo schema del PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Link non trovato" @@ -5317,12 +5333,12 @@ msgid "Data dump options" msgstr "Opzioni di visualizzazione tabelle" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Dump dei dati per la tabella" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struttura della tabella" @@ -5379,9 +5395,9 @@ msgstr "Tipi-MIME disponibili" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -5532,40 +5548,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedure" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funzioni" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Limiti per le tabelle scaricate" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Limiti per la tabella" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Triggers" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struttura per la vista" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Struttura Stand-in per le viste" @@ -5600,43 +5616,43 @@ msgstr "Risultato SQL" msgid "Generated by" msgstr "Generato da" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Visualizza i contenuti delle strutture facendo click sul loro nome" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Modificare ogni impostazione cliccando sul corrispondente link \"Opzioni\"" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Modifica la sua struttura seguendo il link \"Struttura\"" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Vai al database" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "impostazioni" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Vai alla tabella" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Vai alla visualizzazione" @@ -5688,7 +5704,7 @@ msgstr "Contatore di campo non valido nell'input CSV alla linea %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nome tabella" @@ -5771,7 +5787,7 @@ msgid "Charset" msgstr "Set di caratteri" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binario" @@ -6060,8 +6076,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Nome utente" @@ -6082,7 +6098,7 @@ msgid "Variable" msgstr "Variabile" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Valore" @@ -6101,34 +6117,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Qualsiasi utente" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Utilizza campo text" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Qualsiasi host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Locale" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Questo Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Utilizza la Tabella dell'Host" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6384,11 +6400,11 @@ msgstr "Esegui la/e query SQL sul database %s" msgid "Columns" msgstr "Nomi delle colonne" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" @@ -6420,7 +6436,7 @@ msgstr "Visualizza solo" msgid "Location of the text file" msgstr "Percorso del file" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "directory di upload del web-server" @@ -6590,22 +6606,22 @@ msgstr "" "Nessuna descrizione è disponibile per questa trasformazione.
Prego, " "chiedere all'autore cosa %s faccia." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Motore di Memorizzazione" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Definizione Partizioni" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Aggiungi %s campo(i)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6863,8 +6879,8 @@ msgstr "impostazioni" msgid "Protocol version" msgstr "Versione protocollo" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Utente" @@ -6901,7 +6917,7 @@ msgstr "Home page ufficiale di phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6913,7 +6929,7 @@ msgstr "" "server MySQL funzionante con queste impostazioni è aperto a intrusioni, e si " "dovrebbe realmente riparare a questa falla nella sicurezza." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6923,7 +6939,7 @@ msgstr "" "opzione è incompatibile con phpMyAdmin e potrebbe causare la corruzione di " "alcuni dati!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6934,7 +6950,7 @@ msgstr "" "phpMyAdmin non è in grado di dividere correttamente le stringhe di caratteri " "e questo può portare a risultati inaspettati." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6942,13 +6958,13 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Adesso c'è bisogno di una password per il file di configurazione " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6958,7 +6974,7 @@ msgstr "" "installazione, esiste ancora nella cartella del tuo phpMyAdmin. Si consiglia " "di rimuoverla una volta configurato phpMyAdmin." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6967,7 +6983,7 @@ msgstr "" "Le caratteristiche aggiuntive sono state disattivate per funzionare con le " "tabelle linkate. Per scoprire perché clicca %squi%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6977,7 +6993,7 @@ msgstr "" "funzioni di phpMyAdmin saranno mancanti. Per esempio la navigazione dei " "frame non sarà aggiornata automaticamente." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6986,7 +7002,7 @@ msgstr "" "Le tue librerie di PHP per MySQL versione %s sono diverse dalla versione di " "MySQL server %s. Potrebbe causare comportamenti imprevedibili." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7336,115 +7352,115 @@ msgstr "Motori di Memorizzazione" msgid "View dump (schema) of databases" msgstr "Visualizza il dump (schema) dei databases" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Comprende tutti i privilegi tranne GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permette di alterare la struttura di tabelle esistenti." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permette di creare nuove tabelle e nuovi databases." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permette la creazione di routines memorizzate." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permette di creare nuove tabelle." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permette di creare tabelle temporanee." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permette di creare, cancellare e rinominare gli account utente." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permette la creazione di nuove viste." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permette di cancellare dati." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permette di eliminare databases e tabelle." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permette di eliminare tabelle." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permette di impostare gli eventi per lo scheduler" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permette l'esecuzione di routines memorizzate." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permette di importare dati da e esportare dati in file." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei " "privilegi." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permette di creare ed eliminare gli indici." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permette di inserire e sovrascrivere dati." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permette di bloccare le tabelle per il thread corrente." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita il numero di nuove connessioni che un utente può aprire in un'ora." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita il numero di query che un utente può mandare al server in un'ora." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7452,61 +7468,61 @@ msgstr "" "Limita il numero di comandi che possono cambiare una tabella o un database " "che un utente può eseguire in un'ora." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limite di connessioni simultanee che un utente può fare." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permette di vedere i processi di tutti gli utenti" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Non ha alcun effetto in questa versione di MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permette di ricaricare i parametri del server e di resettare la cache del " "server." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Accorda il diritto ad un utente di domandare dove sono i masters/slaves." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Necessario per la replicazione degli slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permette di leggere i dati." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Accorda l'accesso alla lista completa dei databases." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permette di chiudere il server." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7517,157 +7533,157 @@ msgstr "" "settaggio di variabili globali o la cancellazione dei threads di altri " "utenti." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permette di creare e di eliminare i triggers" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permette di cambiare i dati." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Nessun privilegio." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nessuno" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "Nota: i nomi dei privilegi di MySQL sono in Inglese" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Privilegi globali" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Amministrazione" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limiti di risorse" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "N.B.: 0 (zero) significa nessun limite." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informazioni di Login" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Non cambiare la password" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nessun utente trovato." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "L'utente %s esiste già!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Hai aggiornato i permessi per %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Hai revocato i privilegi per %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "La password per l'utente %s è cambiata con successo." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Cancellazione in corso di %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nessun utente selezionato per la cancellazione!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Caricamento dei privilegi in corso" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Gli utenti selezionati sono stati cancellati con successo." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Modifica Privilegi" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Revoca" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Qualsiasi" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Vista d'insieme dell'utente" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Aggiungi un nuovo utente" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Rimuove gli utenti selezionati" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Elimina i databases gli stessi nomi degli utenti." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7680,52 +7696,52 @@ msgstr "" "privilegi usati dal server se sono stati fatti cambiamenti manuali. In " "questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Privilegi relativi alle colonne" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Aggiungi privilegi sul seguente database" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "I caratteri jolly _ e % dovrebbero essere preceduti da un \\ per l'utilizzo " "letterale" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Aggiungi privilegi sulla seguente tabella" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Cambia le Informazioni di Login / Copia Utente" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nuovo utente con gli stessi privilegi e ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... mantieni quello vecchio." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... cancella quello vecchio dalla tabella degli utenti." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoca tutti i privilegi attivi da quello vecchio e in seguito " "cancellalo." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7733,44 +7749,44 @@ msgstr "" " ... cancella quello vecchio dalla tabella degli utenti e in seguito " "ricarica i privilegi." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Database per l'utente" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nessuno" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Garantisci tutti i privilegi per il database "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Utenti che hanno accesso a \"%s\"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globale" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "specifico del database" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "wildcard" @@ -8797,7 +8813,7 @@ msgstr "Impossibile connettersi all'origine" msgid "Could not connect to the target" msgstr "Impossibile connettersi alla destinazione" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9208,12 +9224,12 @@ msgstr "Mostrando la query SQL" msgid "Validated SQL" msgstr "Valida SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etichetta" @@ -9222,75 +9238,75 @@ msgstr "Etichetta" msgid "Table %1$s has been altered successfully" msgstr "La tabella %1$s è già stata modificata con successo" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funzione" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "" " A causa della sua lunghezza,
questo campo non può essere modificato " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Rimuovi le referenze al REPOSITORY BLOB" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Tipo di dato Binario - non modificare" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Carica nella repository BLOB" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Mostrando la query SQL" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "e quindi" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Indietro" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Modifica il record successivo" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9404,12 +9420,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "La tabella %s esiste già!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "La tabella %1$s è stata creata." @@ -9907,11 +9923,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Descrizione" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Non hai i permessi per effettuare questa operazione!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Il profilo è stato aggiornato." @@ -9923,8 +9939,3 @@ msgstr "Nome VISTA" #, fuzzy msgid "Rename view to" msgstr "Rinomina la tabella in" - -#, fuzzy -#~| msgid "CSV" -#~ msgid "SVG" -#~ msgstr "CSV" diff --git a/po/ja.po b/po/ja.po index 689d26c280..9746958fb1 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 11:22+0200\n" "Last-Translator: Michal \n" "Language-Team: japanese \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "すべて表示" @@ -38,17 +38,20 @@ msgstr "" "たか、ブラウザのセキュリティ設定でクロスウィンドウの更新をブロックしているも" "のと思われます" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "検索" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "検索" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "データベースのコメント:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "テーブルのコメント" @@ -135,7 +138,7 @@ msgstr "テーブルのコメント" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -150,8 +153,8 @@ msgstr "カラム名" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -163,13 +166,13 @@ msgstr "種別" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "ヌル(NULL)" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -188,8 +191,8 @@ msgid "Links to" msgstr "リンク先" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -205,10 +208,10 @@ msgstr "コメント" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "いいえ" @@ -224,10 +227,10 @@ msgstr "いいえ" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -254,7 +257,7 @@ msgstr "全選択" msgid "Unselect All" msgstr "全選択解除" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "データベース名が空です!" @@ -268,81 +271,81 @@ msgstr "データベース %s を %s にリネームしました" msgid "Database %s has been copied to %s" msgstr "データベース %s を %s にコピーしました" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "新しいデータベース名" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "コマンド" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "新しいデータベース名" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "データベース %s を削除しました" -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "データベースのコピー先" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "データベースのコピー先" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "構造のみ" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "構造とデータ" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "データのみ" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "コピーの前に CREATE DATABASE する" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s を追加" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "制約を追加する" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "コピーしたデータベースに切り替える" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "照合順序" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,24 +357,24 @@ msgstr "" "リンクテーブルを処理するための追加機能が無効になっています。理由については%s" "こちら%sをご覧ください" -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "リレーショナルスキーマ" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "テーブル" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -382,33 +385,33 @@ msgstr "行" msgid "Size" msgstr "サイズ" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "使用中" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "作成日時" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "最終更新" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "最終検査" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgid_plural "%s tables" msgstr[0] "%s テーブル" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "降順" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "表示" @@ -467,8 +470,8 @@ msgid "Del" msgstr "削除" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "または" @@ -540,17 +543,19 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 件(テーブル %s)" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "表示" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -594,156 +599,141 @@ msgstr "検索するテーブル:" msgid "Inside column:" msgstr "検索するフィールド:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "挿入" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "構造" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "削除" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "空にする" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "テーブル %s を空にしました" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "ビュー %s を破棄しました" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "テーブル %s を削除しました" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "ビュー" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "レプリケーション" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "合計" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "チェックしたものを:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "すべてチェックする" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "すべてのチェックを外す" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認してください" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "エクスポート" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "空にする" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "削除" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "テーブルをチェックする" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "テーブルを最適化する" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "テーブルを修復する" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "テーブルを分析する" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "データ辞書" @@ -751,13 +741,13 @@ msgstr "データ辞書" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -783,8 +773,8 @@ msgstr "状態" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "操作" @@ -827,12 +817,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -912,7 +902,7 @@ msgstr "ブックマークを削除しました" msgid "Showing bookmark" msgstr "表示中のブックマーク" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "ブックマーク %s を作成しました" @@ -939,7 +929,7 @@ msgstr "" "PHP の時間制限を伸ばさない限りこのデータのインポートはできません" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "戻る" @@ -1019,11 +1009,11 @@ msgstr "ホスト名が空です!" msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" @@ -1128,114 +1118,122 @@ msgid "Searching" msgstr "検索" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "行/クエリ" #: js/messages.php:85 #, fuzzy +#| msgid "Showing SQL query" +msgid "Show query box" +msgstr "SQL クエリを表示" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "エンジン" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "無視" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "修正を保存しました" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "リレーションを削除しました" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "外部キーを追加しました" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "内部リレーションを追加しました" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "エラー: リレーションを追加できませんでした" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "エラー: リレーションはすでに存在しています" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "デザイナの座標を保存するときにエラーが発生しました" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "一般的なリレーション機能" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "無効" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "主キーまたはユニークキーを選択してください" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "表示するフィールドを選択してください" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "生成する" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "パスワードを変更する" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "月" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "なし" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "前" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1243,91 +1241,91 @@ msgid "Next" msgstr "次へ" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "合計" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " バイナリ" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "8 月" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "9 月" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "10 月" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "11 月" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy msgid "July" msgstr "日" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "1 月','2 月','3 月','4 月','5 月','6 月" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1335,179 +1333,179 @@ msgid "May" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 #, fuzzy msgid "Jul" msgstr "日" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "日" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "月" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "火" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "金" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "使用中" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1586,9 +1584,9 @@ msgid "Comment" msgstr "コメント" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "編集" @@ -1611,15 +1609,15 @@ msgstr "" "インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし" "れません。" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "データベース" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "エラー" @@ -1863,6 +1861,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "挿入" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "構造" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Databases statistics" @@ -1930,7 +1954,7 @@ msgstr "サーバのインデックスが不正です: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "サーバ" @@ -1984,7 +2008,7 @@ msgstr "MySQLのメッセージ: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "EXPLAIN で確認" @@ -1996,11 +2020,11 @@ msgstr "SQL の EXPLAIN 解析をスキップ" msgid "Without PHP Code" msgstr "PHP コードを省略" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP コードの作成" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "再描画" @@ -2009,7 +2033,7 @@ msgstr "再描画" msgid "Skip Validate SQL" msgstr "SQL の検証をスキップ" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL の検証" @@ -2109,7 +2133,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2133,14 +2157,14 @@ msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2270,7 +2294,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2280,15 +2304,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "保存する" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "リセット" @@ -2409,137 +2433,133 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Relational display field" msgid "Default display direction" msgstr "リレーション表示フィールド" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "次の行を編集する" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "表示機能" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "ファイルに保存する" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "フォーマット" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "圧縮" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2549,68 +2569,68 @@ msgstr "圧縮" msgid "Put columns names in the first row" msgstr "1 行目にフィールド名を追加する" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "フィールド囲み記号" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "フィールドのエスケープ記号" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "NULL の代替文字列" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "行の終端記号" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "行の終端記号" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel のエディション" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2618,404 +2638,404 @@ msgstr "" msgid "Dump table" msgstr "%s テーブル" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "テーブルのキャプションを含める" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "テーブルのキャプション" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "テーブルのキャプション(続き)" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "ラベルキー" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME タイプ" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "リレーション" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "エクスポート形式" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "既存のファイルは上書き" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "テーブル名やフィールド名を逆クォートで囲む" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL互換モード" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "作成/更新/検査日" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "遅延インサートを使用する" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "外部キーのチェックを無効にする" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "BLOBに16進数表記を利用する" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "INSERT IGNORE を使用する" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "作成するクエリの最大長" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "エクスポート" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "エクスポートをトランザクションで囲む" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "クエリ結果操作" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "生成する" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "インポート" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "サーバ" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "テーブル" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Openテキスト" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "ページ番号:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "クエリウィンドウ" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 #, fuzzy msgid "Security" msgstr "[8. セキュリティ]" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "ドキュメント" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration" msgid "Configuration storage" msgstr "設定" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" msgstr "サーバ変数と設定値" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL 履歴" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3023,282 +3043,282 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "土" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "テキストフィールドの値を利用する" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "テキストフィールドの値を利用する" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! テキスト" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "重複している行を無視する" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "テーブルデータを差し替えるファイル" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "インポートするファイルの形式" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "LOCAL キーワードを使用する" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "1 行目にフィールド名を追加する" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "先頭から数えたスキップするレコード(クエリ)の数" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT 値を追加する" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "列コメント表示機能" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3306,52 +3326,52 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 #, fuzzy msgid "" "Number of rows displayed when browsing a result set. If the result set " @@ -3361,374 +3381,374 @@ msgstr "" "結果セットの表示行数。結果セットの行数の方が多い場合は「前(Previous)/次" "(Next)」のリンクが表示されます。" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "左側のメニューを表示する/隠す" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "テーブルの並び順" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "クエリウィンドウ" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "クエリウィンドウ" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "クエリウィンドウ" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "スレッドの修復" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3737,297 +3757,297 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "データベース名" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "列コメント表示機能" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "ステートメント" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "自動修復モード" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "開いているテーブルを表示する" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4035,121 +4055,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "パスワード" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "フィールド列を追加・削除する" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "デフォルト値" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4157,58 +4177,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4231,45 +4251,45 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "LOAD DATA する CSV" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Openスプレッドシート" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "カスタムカラー" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Database export options" msgid "Database export options" @@ -4277,30 +4297,30 @@ msgstr "データベースエクスポートオプション" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "データ" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel 用の CSV" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Openテキスト" @@ -4339,7 +4359,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "イベント" @@ -4368,8 +4388,8 @@ msgid "Designer" msgstr "デザイナ" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "特権" @@ -4381,7 +4401,7 @@ msgstr "ルーチン" msgid "Return type" msgstr "返り値の種類" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4411,18 +4431,18 @@ msgid "Details..." msgstr "詳細..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "パスワードを変更する" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "パスワードなし" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "もう一度入力してください" @@ -4445,8 +4465,8 @@ msgstr "新規データベースを作成する" msgid "Create" msgstr "作成" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "特権なし" @@ -4592,8 +4612,8 @@ msgid "Compression:" msgstr "圧縮" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "なし" @@ -4768,7 +4788,7 @@ msgstr "キーでソート" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4803,8 +4823,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "隠す" @@ -4822,49 +4842,49 @@ msgstr "ブックマークされたクエリを実行する" msgid "The row has been deleted" msgstr "行を削除しました" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "停止" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "行/クエリ" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "表示中の列" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "合計" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "変更" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "印刷用画面 (全テキストを含む)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF スキーマを表示する" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "リンク先が見つかりません" @@ -5337,12 +5357,12 @@ msgid "Data dump options" msgstr "データベースエクスポートオプション" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "テーブルのデータをダンプしています" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "テーブルの構造" @@ -5399,9 +5419,9 @@ msgstr "利用できる MIME タイプ" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "ホスト" @@ -5551,40 +5571,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "プロシジャ" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "関数" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "テーブルの制約" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "トリガ" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "ビュー用の構造" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "ビュー用の代替構造" @@ -5619,42 +5639,42 @@ msgstr "SQL の結果" msgid "Generated by" msgstr "生成環境" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした(行数0)" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5706,7 +5726,7 @@ msgstr "CSV 入力のフィールド数が不正です (行: %d)" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "テーブル名" @@ -5785,7 +5805,7 @@ msgid "Charset" msgstr "文字セット" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " バイナリ" @@ -6069,8 +6089,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "ユーザ名" @@ -6089,7 +6109,7 @@ msgid "Variable" msgstr "変数" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "値" @@ -6108,34 +6128,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "すべてのユーザ" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "テキストフィールドの値を利用する" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "すべてのホスト" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "ローカル" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "このホスト" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "ホストテーブルを使う" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6389,11 +6409,11 @@ msgstr "データベース %s 上でクエリを実行する" msgid "Columns" msgstr "カラム名" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" @@ -6425,7 +6445,7 @@ msgstr "表示のみ" msgid "Location of the text file" msgstr "テキストファイルの位置" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "ウェブサーバ上のアップロードディレクトリ" @@ -6590,22 +6610,22 @@ msgstr "" "この変換機能には説明がありません。
%s の動作については作者にご確認くださ" "い" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "ストレージエンジン" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "パーティションの定義" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s 個のフィールドを追加する" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6855,8 +6875,8 @@ msgstr "一般的なリレーション機能" msgid "Protocol version" msgstr "プロトコルバージョン" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "ユーザ" @@ -6893,7 +6913,7 @@ msgstr "phpMyAdmin のオフィシャルサイト" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6905,7 +6925,7 @@ msgstr "" "ト設定で動作しているため不正アクセス可能な状態になっています。このセキュリ" "ティホールはかならず閉ざしてください" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6914,7 +6934,7 @@ msgstr "" "PHP の設定で mbstring.func_overload が有効になっています。phpMyAdmin はこのオ" "プションに対応していないため、データが破壊されることがあります!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6924,7 +6944,7 @@ msgstr "" "いるようですが、mbstring 拡張がないと phpMyAdmin は文字列を正しく分割できない" "ため予期しない結果になることがあります" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6932,20 +6952,20 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "設定ファイルが秘密のパスフレーズ (blowfish_secret) を必要とするようになりまし" "た" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6954,14 +6974,14 @@ msgstr "" "リンクテーブルを処理するための追加機能が無効になっています。理由については%s" "こちら%sをご覧ください" -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6970,7 +6990,7 @@ msgstr "" "お使いの PHP MySQL ライブラリのバージョン %s が MySQL サーバのバージョン %s " "と異なります。これは予期しない不具合を起こす可能性があります。" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7313,169 +7333,169 @@ msgstr "ストレージエンジン" msgid "View dump (schema) of databases" msgstr "データベースのダンプ(スキーマ)表示" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT 以外のすべての特権を付与する" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "既存のテーブル構造の変更を許可する" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "ストアドルーチンの修正と削除を許可する" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "新しいデータベースやテーブルの作成を許可する" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "ストアドルーチンの作成を許可する" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "新しいテーブルの作成を許可する" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "一時テーブルの作成を許可する" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "ユーザアカウントの作成・削除・リネームを許可する" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "新しいビューの作成を許可する" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "データの削除を許可する" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "データベースとテーブルの削除を許可す" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "テーブルの削除を許可する" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "イベントスケジューラにイベントを設定できるようにする" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "ストアドルーチンの実行を許可する" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "データのインポート、エクスポートを許可する" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "特権テーブルのリロードなしのユーザ・特権の追加を許可する" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "インデックスの作成、削除を許可する" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "データの挿入、置換を許可する" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "現在のスレッドのテーブルロックを許可する" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "単位時間内に可能な新規接続回数を制限する" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "単位時間内にサーバに送信可能なクエリ数を制限する" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" "単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "ユーザの同時接続数を制限する" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "全ユーザのプロセスを閲覧できるようにする" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "このバージョンの MySQL では無効です" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "サーバ設定のリロード、サーバキャッシュのフラッシュを許可する" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "スレーブ/マスターの照会を許可する" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "レプリケーションスレーブでは有効にする必要があります" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "データの読み込みを許可する" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "データベース総一覧へのアクセスを許可する" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW クエリの実行を許可する" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "サーバのシャットダウンを許可する" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7485,157 +7505,157 @@ msgstr "" "ザのスレッドを停止するといった管理操作をする場合はたいていこの設定が必要にな" "ります" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "トリガの作成・削除を許可する" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "データの修正を許可する" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "特権はありません" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "なし" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "テーブル固有の特権" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "注意: MySQL の特権名は英語で表示されます" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "グローバル特権" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "データベースに固有の特権" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "管理" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "リソースの制限" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します" -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "ログイン情報" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "パスワードは変更しない" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ユーザが存在しません" -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "ユーザ %s は既に存在します!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "新しいユーザを追加しました" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "%s の特権を更新しました" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s の特権を取り消しました" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "%s のパスワードは正しく変更されました" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "%s を削除中です" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "削除するユーザが選択されていません!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "特権をリロードしています" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "選択したユーザを正しく削除しました" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "特権を正常にリロードしました" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "特権を編集" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "取り消し" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "すべて" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "ユーザ概略" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "権限委譲" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "新しいユーザを追加する" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "選択したユーザを削除する" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "特権をすべて取り消してユーザを削除する" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "ユーザと同名のデータベースを削除する" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7648,91 +7668,91 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権リロー" "ド%s をしてください" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "このカラムに固有の特権" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "データベースに特権を追加" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "テーブルに特権を追加" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "ログイン情報の変更 / ユーザの複製" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "同じ特権を持つ新しいユーザを作る" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "元のユーザも残す" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権をリロードする" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "ユーザ専用データベース" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "なし" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "同名のデータベースを作成してすべての特権を与える" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr ""%s" にアクセスできるユーザ" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "グローバル" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "データベース固有" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "ワイルドカード" @@ -8711,7 +8731,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9118,12 +9138,12 @@ msgstr "SQL クエリを表示" msgid "Validated SQL" msgstr "SQL の検証" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "ラベル" @@ -9132,73 +9152,73 @@ msgstr "ラベル" msgid "Table %1$s has been altered successfully" msgstr "テーブル %1$s を変更しました" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "参照されている値を表示する" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "関数" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " 長さによってはこのフィールドを
修正できなくなる場合もあります" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " バイナリ - 編集不可" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "続いて" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "前のページに戻る" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "このページに戻る" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "次の行を編集する" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9309,12 +9329,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "テーブル %s は既に存在します!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "テーブル %1$s を作成しました。" @@ -9807,11 +9827,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "説明" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "特権不足でアクセスできません!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "プロファイルを更新しました" diff --git a/po/ka.po b/po/ka.po index 874f6304cf..e2a9206a07 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "ყველას ჩვენება" @@ -37,17 +37,20 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ძებნა" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "ძებნა" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -123,7 +126,7 @@ msgid "Database comment: " msgstr "მონაცემთა ბაზის კომენტარი: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "ცხრილის კომენტარები" @@ -134,7 +137,7 @@ msgstr "ცხრილის კომენტარები" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -149,8 +152,8 @@ msgstr "სვეტების სახელები" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -162,13 +165,13 @@ msgstr "ტიპი" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "ნული" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -187,8 +190,8 @@ msgid "Links to" msgstr "Links to" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -204,10 +207,10 @@ msgstr "კომენტარები" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "არა" @@ -223,10 +226,10 @@ msgstr "არა" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -253,7 +256,7 @@ msgstr "ყველას მონიშნვა" msgid "Unselect All" msgstr "მონიშნვის მოხსნა" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "მონაცემთა ბაზა ცარიელია!" @@ -267,80 +270,80 @@ msgstr "Database %s has been renamed to %s" msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "ბრძანება" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Rename database to" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Database %s has been dropped." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "მონაცემთა ბაზები არაა" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "მხოლოდ მონაცემები" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "კოლაცია" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -352,24 +355,24 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relational schema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "ცხრილი" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -380,33 +383,33 @@ msgstr "სტრიქონები" msgid "Size" msgstr "ზომა" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "in use" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "შეიქმნა" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "უკანასკნელი განახლება" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Last check" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -415,7 +418,7 @@ msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -445,7 +448,7 @@ msgid "Descending" msgstr "კლებადობით" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "ჩვენება" @@ -466,8 +469,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "ან" @@ -540,17 +543,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "არჩევა" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -595,69 +600,30 @@ msgstr "ცხრილ(ებ)ში:" msgid "Inside column:" msgstr "ველში:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "ჩასმა" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "სტრუქტურა" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Drop" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "ცარიელი" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -666,87 +632,111 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "ხედო" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "რეპლიკაცია" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "ჯამი" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "ყველას შემოწმება" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "მონიშნვის მოხსნა ყველასთვის" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "ექსპორტი" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "ცარიელი" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Drop" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "ცხრილის შემოწმება" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "ცხრილის ოპტიმიზება" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "ცხრილის აღდგენა" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "მონაცემების ლექსიკონი" @@ -755,13 +745,13 @@ msgstr "მონაცემების ლექსიკონი" msgid "Tracked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -789,8 +779,8 @@ msgstr "მდგომარეობა" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "მოქმედება" @@ -838,12 +828,12 @@ msgstr "ცხრილის შემოწმება" msgid "Database Log" msgstr "მონაცემთა ბაზა" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -920,7 +910,7 @@ msgstr "The bookmark has been deleted." msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" @@ -947,7 +937,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "უკან" @@ -1027,11 +1017,11 @@ msgstr "ჰოსტის სახელი არაა შეყვანი msgid "The user name is empty!" msgstr "მომხმარებლის სახელი ცარიელია!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "პაროლი ცარიელია!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "პაროლები არ ემთხვევა!" @@ -1137,114 +1127,122 @@ msgid "Searching" msgstr "ძებნა" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL Query box" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL Query box" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "ძრავები" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relation deleted" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Internal relation added" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Error: Relation not added." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Error: relation already exists." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "გათიშულია" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "აირჩიეთ საჩვენებელი ველი" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "დაგენერირება" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "პაროლის შეცვლა" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "ორშ" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "შემოწირულობა" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "წინა" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1252,96 +1250,96 @@ msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "მაი" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1349,178 +1347,178 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "დეკ" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "ვიკი" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1599,9 +1597,9 @@ msgid "Comment" msgstr "კომენტარი" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "რედაქტირება" @@ -1624,15 +1622,15 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "მონაცემთა ბაზები" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "შეცდომა" @@ -1880,6 +1878,32 @@ msgstr "ფაილის ჩამოტვირთვა" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "ჩასმა" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "სტრუქტურა" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1949,7 +1973,7 @@ msgstr "Invalid server index: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "სერვერი" @@ -2006,7 +2030,7 @@ msgstr "MySQL-მა თქვა: " msgid "Failed to connect to SQL validator!" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL-ის ახსნა" @@ -2018,11 +2042,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "PHP კოდის გარეშე" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "განახლება" @@ -2031,7 +2055,7 @@ msgstr "განახლება" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validate SQL" @@ -2131,7 +2155,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2155,14 +2179,14 @@ msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "სტრუქტურა" @@ -2294,7 +2318,7 @@ msgid "Set value: %s" msgstr "Set value: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Restore default value" @@ -2304,15 +2328,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "შენახვა" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "დაბრუნება" @@ -2452,112 +2476,108 @@ msgid "Confirm DROP queries" msgstr "Confirm DROP queries" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Tab that is displayed when entering a database" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Default database tab" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Tab that is displayed when entering a server" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Default server tab" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Tab that is displayed when entering a table" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Default table tab" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy msgid "Show binary contents as HEX by default" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 #, fuzzy msgid "Show binary contents as HEX" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Show database listing as a list instead of a drop down" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "მონაცემთა ბაზების სიის სახით ჩვენება" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "სერვერების სიის სახით ჩვენება" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Display Features" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "შეცდომების იგნორირება" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "შეცდომების იგნორირება" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2565,32 +2585,32 @@ msgstr "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Maximum execution time" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "ფაილის სახის შენახვა" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "სომბოლოთა ნაკრები ფაილისათვის" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "ფორმატი" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "შეკუმშვა" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2600,68 +2620,68 @@ msgstr "შეკუმშვა" msgid "Put columns names in the first row" msgstr "Put fields names in the first row" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Fields enclosed by" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Fields escaped by" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel edition" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Database name template" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Server name template" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Table name template" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2669,116 +2689,116 @@ msgstr "Table name template" msgid "Dump table" msgstr "%s table(s)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Include table caption" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Table caption" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-ის ტიპი" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Export type" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "სერვერზე შენახვა" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Remember file name template" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Creation/Update/Check dates" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal for BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Export type" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Export defaults" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Force secured connection while using phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Force SSL connection" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2786,192 +2806,192 @@ 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Foreign key dropdown order" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Foreign key limit" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "დათვალიერების რეჟიმი" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Customize browse mode" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Customize default export options" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "რედაქტირების რეჟიმი" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Customize edit mode" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Export defaults" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Customize default export options" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Features" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "დაგენერირება" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "შემოტანა" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Import defaults" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Customize default common import options" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "იმპორტი / ექსპორტი" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Set import and export directories and compression options" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "ნავიგაციის ჩარჩო" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Customize appearance of the navigation frame" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "სერვერები" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "სერვერის ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "ცხრილები" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "ცხრილების ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "მთავარი ჩარჩო" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Other core settings" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Settings that didn't fit enywhere else" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "გვერდის ნომერი:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Query window" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Customize query window options" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "უსაფრთხოება" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2979,27 +2999,27 @@ msgstr "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "ძირითადი პარამეტრები" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "სერვერის კონფიგურაცია" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3007,17 +3027,17 @@ msgstr "" "Advanced server configuration, do not change these options unless you know " "what they are for" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Enter server connection parameters" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "კონფიგურაციის ფაილი" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3032,56 +3052,56 @@ msgstr "" "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " "documentation" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Customize export options" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Customize import defaults" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Customize navigation frame" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Customize main frame" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL მოთხოვნები" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL Query box" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Customize links shown in SQL Query boxes" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL მოთხოვნები" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL history" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3089,49 +3109,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Startup" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Customize startup page" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "დაფები" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Choose how you want tabs to work" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Customize export options" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Warning" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3139,15 +3159,15 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Extra parameters for iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3155,11 +3175,11 @@ msgstr "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignore multiple statement errors" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3169,21 +3189,21 @@ msgstr "" "This might be good way to import large files, however it can break " "transactions." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Partial import: allow interrupt" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignore duplicate rows" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3191,96 +3211,96 @@ msgstr "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "შემოტანილი ფაილების ფორმატი" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Use LOCAL keyword" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, 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:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Partial import: skip queries" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 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:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "ჩასმული სტრიქონების რაოდენობა" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Target for quick access icon" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "ლოგოს ჩვენება" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Display server choice at the top of the left frame" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Display servers selection" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Display databases in a tree" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "String that separates databases into different tree levels" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Database tree separator" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3288,39 +3308,39 @@ msgstr "" "Only light version; display databases in a tree (determined by the separator " "defined below)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Display databases in a tree" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Disable this if you want to see all databases at once" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Use light version" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Maximum table tree depth" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "String that separates tables into different tree levels" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Table tree separator" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3328,38 +3348,38 @@ 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logo link target" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Highlight server under the mouse cursor" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Enable highlighting" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Use less graphically intense tabs" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Light tabs" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, 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:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3369,11 +3389,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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Delete all cookies on logout" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3381,11 +3401,11 @@ msgstr "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Recall user name" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3397,52 +3417,52 @@ 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:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Login cookie store" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Login cookie validity" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Maximum displayed SQL length" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "Maximum number of databases displayed in left frame and database list" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Maximum databases" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3452,29 +3472,29 @@ msgstr "" "contains more rows, "Previous" and "Next" links will be " "shown." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Maximum number of rows to display" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Maximum tables" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3482,47 +3502,47 @@ 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "მეხსიერების შეზღუდვა" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Show/Hide left menu" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alter table order by" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Use only icons, only text or both" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Iconic navigation bar" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 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:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip output buffering" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3534,46 +3554,46 @@ 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Default sorting order" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Use persistent connections to MySQL databases" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Persistent connections" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Iconic table operations" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, 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:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Protect binary fields" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3586,119 +3606,119 @@ msgstr "" "Enable if you want DB-based query history (requires pmadb). If disabled, " "this utilizes JS-routines to display query history (lost by window close)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Permanent query history" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "How many queries are kept in history" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Query history length" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Tab displayed when opening a new query window" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Default query window tab" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Query window" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Query window" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Query window" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 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:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Recoding engine" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Repair threads" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Directory where exports can be saved on server" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "დირექტორიის შენახვა" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Leave blank if not used" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Host authentication order" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Leave blank for defaults" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Host authentication rules" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "root-ით შესვლის ნებართვა" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3708,19 +3728,19 @@ msgstr "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "SweKey config file" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Authentication method to use" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3728,11 +3748,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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "ცხრილის ჩანიშვნა" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3740,31 +3760,31 @@ msgstr "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Column information table" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "MySQL სერვერთან კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 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:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "კავშირის ტიპი" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Control user password" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3772,19 +3792,19 @@ 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Control user" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Count tables when showing database list" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "ცხრილების დათვლა" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3792,11 +3812,11 @@ msgstr "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Designer table" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3804,27 +3824,27 @@ msgstr "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA-ის გამოყენების აკრძალვა" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "What PHP extension to use; you should use mysqli if supported" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "გამოსაყენებელი PHP გაფართოება" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Hide databases matching regular expression (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "მონაცემთა ბაზების დამალვა" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3832,31 +3852,31 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Hostname where MySQL server is running" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "სერვერის ჰოსტის სახელი" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Logout URL" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Try to connect without password" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "პაროლის გარეშე დაკავშირება" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3871,29 +3891,29 @@ 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:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Show only listed databases" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Leave empty if not using config auth" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Password for config auth" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 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:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF schema: pages table" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3903,21 +3923,21 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "მონაცემთა ბაზა" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "სერვერის პორტი" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3925,19 +3945,19 @@ 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Relation table" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "SQL command to fetch available databases" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES command" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3945,42 +3965,42 @@ msgstr "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Signon session name" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "MySQL სერვერთან კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "SSL-ის გამოყენება" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF schema: table coordinates" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -3992,53 +4012,53 @@ msgstr "" "Table to describe the display fields, leave blank for no support; suggested: " "[kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Display fields table" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Statements" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4050,25 +4070,25 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatic recovery mode" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4080,15 +4100,15 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "User for config auth" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4096,11 +4116,11 @@ msgstr "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Verbose check" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4108,11 +4128,11 @@ msgstr "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Verbose name of this server" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4120,11 +4140,11 @@ 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:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Allow to display all the rows" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4134,35 +4154,35 @@ 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "პაროლის შეცვლის ფორმის ჩვენება" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "მონაცემთა ბაზის შექმნის ფორმის ჩვენება" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Show open tables" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Display the function fields in edit/insert mode" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "ფუნქციების ველების ჩვენება" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4170,32 +4190,32 @@ msgstr "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "phpinfo() ბმულის ჩვენება" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "MySQL სერვერის შესახებ დეტალური ინფორმაციის ჩვენება" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "SQL მოთხოვნების ჩვენება" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "სტატისტიკის ჩევნება" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4203,11 +4223,11 @@ msgstr "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Display database comment instead of its name" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4219,61 +4239,61 @@ msgstr "" "['LeftFrameTableSeparator'] directive, so only the folder is called like the " "alias, the table name itself stays unchanged" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Display table comment instead of its name" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Display table comments in tooltips" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 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:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "პაროლი" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "მომხმარებელი:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4281,65 +4301,65 @@ msgstr "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Suggest new database name" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR textarea columns" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR textarea rows" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Default table tab" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4351,37 +4371,37 @@ 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:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "List of trusted proxies for IP allow/deny" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "ატვირთვის დირექტორია" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Allow for searching inside the entire database" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Use database search" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4391,15 +4411,15 @@ msgstr "" "libraries/import.lib.php for defaults on how many queries a statement may " "contain." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Verbose multiple statements" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4407,7 +4427,7 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4436,74 +4456,74 @@ msgid "Signon authentication" msgstr "Host authentication order" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Custom color" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "მონაცემთა ბაზის ექსპორტის პარამეტრები" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "მონაცემები" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV MS Excel-თვის" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4542,7 +4562,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "მოვლენები" @@ -4571,8 +4591,8 @@ msgid "Designer" msgstr "შემქნელი" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "პრივილეგიები" @@ -4584,7 +4604,7 @@ msgstr "Routines" msgid "Return type" msgstr "Return type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4615,18 +4635,18 @@ msgid "Details..." msgstr "დეტალები..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "პაროლის შეცვლა" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "პაროლი არაა" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-type" @@ -4649,8 +4669,8 @@ msgstr "ახალი მონაცემთა ბაზის შექმ msgid "Create" msgstr "შექმნა" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "პრივილეგიები არაა" @@ -4794,8 +4814,8 @@ msgid "Compression:" msgstr "შეკუმშვა" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "არაა" @@ -4968,7 +4988,7 @@ msgstr "Sort by key" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5003,8 +5023,8 @@ msgstr "ორობითი შიგთავსის ჩვენება" msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "დამალვა" @@ -5022,49 +5042,49 @@ msgstr "ჩანიშნული მოთხოვნის გაშვე msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "მოთხოვნაში" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "სულ" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "შეცვლა" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF სქემის ჩვენება" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" @@ -5540,12 +5560,12 @@ msgid "Data dump options" msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Dumping data for table" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Table structure for table" @@ -5602,9 +5622,9 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "ჰოსტი" @@ -5750,40 +5770,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "პროცედურები" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "ფუნქციები" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "ტრიგერები" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "სტრუქტურა ხედისათვის" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" @@ -5819,44 +5839,44 @@ msgstr "SQL-ის შედეგი" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5908,7 +5928,7 @@ msgstr "Invalid field count in CSV input on line %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "ცხრილის სახელი" @@ -5987,7 +6007,7 @@ msgid "Charset" msgstr "სიმბოლოთა ნაკრები" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "ბინარული" @@ -6273,8 +6293,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "მომხმარებლის სახელი" @@ -6295,7 +6315,7 @@ msgid "Variable" msgstr "ცვლადი" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "მნიშვნელობა" @@ -6314,34 +6334,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "ნებისმიერი მომხმარებელი" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "ნებისმიერი ჰოსტი" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "ლოკალური" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "ეს ჰოსტი" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6598,11 +6618,11 @@ msgstr "Run SQL query/queries on database %s" msgid "Columns" msgstr "სვეტების სახელები" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -6634,7 +6654,7 @@ msgstr "View only" msgid "Location of the text file" msgstr "Location of the text file" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "web server upload directory" @@ -6801,22 +6821,22 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "PARTITION definition" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ველის დამატება" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7071,8 +7091,8 @@ msgstr "Other core settings" msgid "Protocol version" msgstr "ოქმის ვერსია" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "მომხმარებელი" @@ -7109,7 +7129,7 @@ msgstr "ოფიციალური ვებგვერდი" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7121,7 +7141,7 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole by setting a password for user 'root'." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7131,7 +7151,7 @@ msgstr "" "პარამეტრი არაა თავსებადი phpMyAdmin-თან და შეიძლება გამოიწვიოს მონაცემების " "დაზიანება!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7142,7 +7162,7 @@ msgstr "" "არ შეუძლია სტრიქონების სწორად დაყოფა რის გამოც შეიძლება მიიღოთ მოულოდნელი " "შედეგი." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7154,19 +7174,19 @@ msgstr "" "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7175,14 +7195,14 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7191,7 +7211,7 @@ msgstr "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7544,112 +7564,112 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7657,58 +7677,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7718,158 +7738,158 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "პრივილეგიები არაა." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "არაა" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "გლობალური პრივილეგიები" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "ადმინისტრირება" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Login Information" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "არ შეცვალო პაროლი" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "მომხმარებელი %s უკვე არსებობს!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "%s-ის წაშლა" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "პრივილეგიების რედაქტირება" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "ნებისმიერი" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "მომხმარებლის მიმოხილვა" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "ახალი მომხმარებლის დამატება" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7882,49 +7902,49 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should %" "sreload the privileges%s before you continue." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... ძველის შენახვა." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7932,45 +7952,45 @@ msgstr "" " ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "არაა" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "გლობალულრი" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "database-specific" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "wildcard" @@ -8974,7 +8994,7 @@ msgstr "MySQL სერვერთან დაკავშირება ვ msgid "Could not connect to the target" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9489,12 +9509,12 @@ msgstr "Showing SQL query" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Label" @@ -9503,73 +9523,73 @@ msgstr "Label" msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Browse foreign values" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "ფუნქცია" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Because of its length,
this field might not be editable " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "და შემდეგ" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9682,12 +9702,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "ცხრილი %s უკვე არსებობს!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Table %1$s has been created." @@ -10185,11 +10205,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "აღწერილობა" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "You don't have sufficient privileges to be here right now!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "პროფილი განახლდა." diff --git a/po/ko.po b/po/ko.po index 217187241f..e265cbcc6f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "모두 보기" @@ -37,17 +37,20 @@ msgstr "" "대상 브라우저 창을 업데이트할 수 없습니다. 부모 창을 닫았거나 브라우저의 보" "안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "검색" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "검색" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -123,7 +126,7 @@ msgid "Database comment: " msgstr "데이터베이스 설명:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "테이블 설명" @@ -134,7 +137,7 @@ msgstr "테이블 설명" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -147,8 +150,8 @@ msgstr "컬럼명" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -160,13 +163,13 @@ msgstr "종류" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -185,8 +188,8 @@ msgid "Links to" msgstr "링크 대상:" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -202,10 +205,10 @@ msgstr "설명(코멘트)" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr " 아니오 " @@ -221,10 +224,10 @@ msgstr " 아니오 " #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -251,7 +254,7 @@ msgstr "모두 선택" msgid "Unselect All" msgstr "모두 선택안함" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "데이터베이스명이 없습니다!" @@ -265,80 +268,80 @@ msgstr "데이터베이스 %s 의 이름을 %s 로 변경하였습니다." msgid "Database %s has been copied to %s" msgstr "데이터베이스 %s 를 %s 로 복사하였습니다." -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "데이터베이스 이름 변경" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "커맨드" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "데이터베이스 이름 변경" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "데이터베이스 %s 를 제거했습니다." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "데이터베이스가 없습니다" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "데이터베이스 복사" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "구조만" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "구조와 데이터 모두" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "데이터만" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "복사 전에 CREATE DATABASE 실행" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s 추가" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "제약조건 추가" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "복사한 테이블로 옮겨감" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "데이터정렬방식" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -350,22 +353,22 @@ msgstr "" "링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" "s여기를 클릭%s하십시오." -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "테이블 " #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -376,40 +379,40 @@ msgstr "행(레코드)" msgid "Size" msgstr "크기" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "사용중" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "생성" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "업데이트" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "검사" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s개 테이블 " #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -439,7 +442,7 @@ msgid "Descending" msgstr "내림차순(역순)" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "보기" @@ -460,8 +463,8 @@ msgid "Del" msgstr "삭제" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "또는" @@ -529,17 +532,19 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 건 일치 (테이블 %s)" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "보기" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -581,156 +586,141 @@ msgstr "찾을 테이블:" msgid "Inside column:" msgstr "검색할 컬럼:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "삽입" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "구조" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "삭제" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "비우기" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "테이블 %s 을 비웠습니다" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "뷰 %s가 제거되었습니다." -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "테이블 %s 을 제거했습니다." -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "트래킹이 활성화되었습니다." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "트래킹이 활성화되어 있지 않습니다." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "계" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "선택한 것을:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "모두 체크" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "모두 체크안함" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "내보내기" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "비우기" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "삭제" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "테이블 검사" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "테이블 최적화" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "테이블 복구" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "테이블 분석" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "데이터 사전 (전체 구조보기)" @@ -738,13 +728,13 @@ msgstr "데이터 사전 (전체 구조보기)" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -771,8 +761,8 @@ msgstr "상태" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "실행" @@ -819,12 +809,12 @@ msgstr "테이블 검사" msgid "Database Log" msgstr "데이터베이스" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -899,7 +889,7 @@ msgstr "북마크를 제거했습니다." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -924,7 +914,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "뒤로" @@ -1003,11 +993,11 @@ msgstr "호스트명이 없습니다!" msgid "The user name is empty!" msgstr "사용자명이 없습니다!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "암호가 비었습니다!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" @@ -1109,108 +1099,114 @@ msgid "Searching" msgstr "검색" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL 질의" #: js/messages.php:85 +#, fuzzy +msgid "Show query box" +msgstr "SQL 질의" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다." -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "사용불가" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "출력할 필드 선택" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "암호 변경" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "암호 변경" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mo" msgid "More" msgstr "월" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "완료" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "이전" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1218,231 +1214,231 @@ msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "오늘" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "1월" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "2월" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "3월" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "4월" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "5월" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "6월" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "7월" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "8월" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "9월" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "10월" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "11월" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "12월" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "일요일" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "월요일" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "목요일" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "금요일" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "주" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "시" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "분" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "초" @@ -1519,9 +1515,9 @@ msgid "Comment" msgstr "설명(코멘트)" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "수정" @@ -1542,15 +1538,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "데이터베이스 " #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "오류" @@ -1789,6 +1785,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "삽입" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "구조" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1852,7 +1874,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "서버" @@ -1906,7 +1928,7 @@ msgstr "MySQL 메시지: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL 해석" @@ -1918,11 +1940,11 @@ msgstr "해석(EXPLAIN) 생략" msgid "Without PHP Code" msgstr "PHP 코드 없이 보기" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP 코드 보기" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1931,7 +1953,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "SQL 검사 생략" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL 검사" @@ -2029,7 +2051,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2053,14 +2075,14 @@ msgid "Select from the web server upload directory %s:" msgstr "웹서버 업로드 디렉토리" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "구조" @@ -2189,7 +2211,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2199,15 +2221,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "저장" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "리세트" @@ -2329,135 +2351,131 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "데이터베이스 사용량 통계" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display order:" msgid "Display errors" msgstr "출력 순서:" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "파일로 저장" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "파일 문자셋:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "압축" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2467,69 +2485,69 @@ msgstr "압축" msgid "Put columns names in the first row" msgstr "맨처음에 필드 이름을 출력" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "필드 감싸기" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "필드 특수문자(escape) 처리" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "줄(열) 구분자" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "줄(열) 구분자" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "파일명 템플릿" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "파일명 템플릿" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "파일명 템플릿" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2538,198 +2556,198 @@ msgstr "파일명 템플릿" msgid "Dump table" msgstr "%s개 테이블 " -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 #, fuzzy msgid "Relations" msgstr "테이블 작업" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "내보내기" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "파일명 템플릿" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "테이블, 필드명에 백쿼터(`) 사용" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy msgid "Use delayed inserts" msgstr "확장된 inserts" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "확장된 inserts" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "테이블이 없습니다" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV 데이터" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2737,208 +2755,208 @@ msgstr "" msgid "Import" msgstr "내보내기" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "파일 가져오기" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 #, fuzzy msgid "LaTeX" msgstr "Label" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "데이터베이스 사용량 통계" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "서버" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "테이블 수" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "문서" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "페이지:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "질의 창" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authenticating..." msgid "Authentication" msgstr "인증중입니다..." -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authenticating..." msgid "Authentication settings" msgstr "인증중입니다..." -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL 질의" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL 질의" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL 질의" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL 내력(히스토리)" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2946,277 +2964,277 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "상태" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "테이블 " -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "파일로 테이블 대치하기" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "맨처음에 필드 이름을 출력" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT 값 추가" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3224,427 +3242,427 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "리소스 제한" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "다음 순서대로 테이블 정렬(변경)" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "질의 창" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "질의 창" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "질의 창" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "연결 수" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "테이블이 없습니다" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "데이터베이스가 없습니다" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "서버 선택" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3653,299 +3671,299 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "데이터베이스명" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "서버 선택" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "테이블 복구" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "서버 선택" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "명세" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "서버 버전" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "테이블 보기" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "행(레코드) 통계" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3953,122 +3971,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "암호" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "사용자명:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "컬럼 추가/삭제" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "기본값" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4076,58 +4094,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4156,75 +4174,75 @@ msgid "Signon authentication" msgstr "인증중입니다..." #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "사용자 지정 색상" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "데이터베이스 사용량 통계" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "데이터" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS엑셀 CSV 데이터" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4263,7 +4281,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4292,8 +4310,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "사용권한" @@ -4305,7 +4323,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4334,18 +4352,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "암호 변경" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "암호 없음" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "재입력" @@ -4366,8 +4384,8 @@ msgstr "새 데이터베이스 만들기" msgid "Create" msgstr " 만들기 " -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "권한 없음" @@ -4503,8 +4521,8 @@ msgid "Compression:" msgstr "압축" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "없음" @@ -4662,7 +4680,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4696,8 +4714,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4715,49 +4733,49 @@ msgstr "" msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "질의(in query)" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "행(레코드) 보기" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "합계" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "변경" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "" @@ -5176,12 +5194,12 @@ msgid "Data dump options" msgstr "데이터베이스 사용량 통계" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "테이블의 덤프 데이터" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "테이블 구조" @@ -5229,9 +5247,9 @@ msgstr "" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "호스트" @@ -5375,43 +5393,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "프로세스 목록" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "함수" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "구조만" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5444,43 +5462,43 @@ msgstr "SQL 결과" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "데이터베이스가 없습니다" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5531,7 +5549,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5608,7 +5626,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "바이너리" @@ -5892,8 +5910,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "사용자명" @@ -5912,7 +5930,7 @@ msgid "Variable" msgstr "변수" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "값" @@ -5932,34 +5950,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "아무나" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "아무데서나" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6212,11 +6230,11 @@ msgstr "데이터베이스 %s에 SQL 질의를 실행" msgid "Columns" msgstr "열(칼럼) 이름" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6248,7 +6266,7 @@ msgstr "View only" msgid "Location of the text file" msgstr "SQL 텍스트파일의 위치" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "웹서버 업로드 디렉토리" @@ -6399,21 +6417,21 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "필드 추가하기" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6578,8 +6596,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "사용자" @@ -6617,7 +6635,7 @@ msgstr "phpMyAdmin 공식 홈" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6628,21 +6646,21 @@ msgstr "" "가 작동한다면 누구나 침입할 수 있으므로, 이 보안상 허점을 수정하시기 바랍니" "다." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6650,18 +6668,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6670,21 +6688,21 @@ msgstr "" "링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" "s여기를 클릭%s하십시오." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7016,114 +7034,114 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT 이외의 모든 권한을 포함함." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "테이블 구조 변경 허용." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "DB 및 테이블 생성 허용." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "테이블 생성 허용." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "테이블 생성 허용." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "임시테이블 생성 허용." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "테이블 생성 허용." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "데이터 삭제 허용." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "DB 및 테이블 삭제 허용." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "테이블 삭제 허용." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "데이터 추가(insert) 및 변경(replace) 허용." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7131,218 +7149,218 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "이 버전의 MySQL에는 소용이 없습니다." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "캐시를 비우고 서버를 재시동하는 것을 허용." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "복제서버(replication slaves)에 필요합니다." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "데이터 읽기 허용." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "전체 데이터베이스 목록 접근을 허용" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "서버 종료 허용." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "데이터 변경 허용." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "권한 없음." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "없음" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " 주의: MySQL 권한 이름은 영어로 표기되어야 합니다. " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "전체적 권한" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "리소스 제한" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "로그인 정보" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "암호를 변경하지 않음" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "사용자가 없습니다." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "%s 의 권한을 업데이트했습니다." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s의 권한을 제거했습니다." -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 의 암호가 바뀌었습니다." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr " %s 을 삭제합니다" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "사용권한을 갱신합니다(Reloading the privileges)" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "권한 수정" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "제거" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Any" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "사용자 개요" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 #, fuzzy msgid "Grant" msgstr "인쇄" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "새 사용자 추가" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "선택한 사용자를 삭제" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7351,94 +7369,94 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "다음 데이터베이스에 권한 추가하기" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "다음 테이블에 권한 추가하기" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2101 +#: server_privileges.php:2100 #, fuzzy msgid " ... delete the old one from the user tables." msgstr "권한 테이블에서 사용자를 삭제하기만 함." -#: server_privileges.php:2102 +#: server_privileges.php:2101 #, fuzzy msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:2103 +#: server_privileges.php:2102 #, fuzzy msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "사용자를 삭제하고 사용권한을 갱신함." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "없음" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr ""%s" 에 접근할 수 있는 사용자들" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8332,7 +8350,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8742,12 +8760,12 @@ msgstr "" msgid "Validated SQL" msgstr "SQL 검사" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Label" @@ -8756,72 +8774,72 @@ msgstr "Label" msgid "Table %1$s has been altered successfully" msgstr "선택한 사용자들을 삭제했습니다." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "함수" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " 필드의 길이 때문에,
이 필드를 편집할 수 없습니다 " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " 바이너리 - 편집 금지 " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "새 열을 삽입합니다" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "이어서" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "되돌아가기" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: tbl_change.php:1052 +#: tbl_change.php:1054 #, fuzzy msgid "Go back to this page" msgstr "되돌아가기" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8931,12 +8949,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "테이블 %s 을 제거했습니다." @@ -9425,11 +9443,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "설명이 없습니다" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "어떻게 들어오셨어요? 지금 여기 있을 권한이 없습니다!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "프로파일을 업데이트했습니다." diff --git a/po/lt.po b/po/lt.po index 3cf39c2c13..4b0bf5d013 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-08-30 15:22+0200\n" "Last-Translator: \n" "Language-Team: lithuanian \n" @@ -16,7 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Rodyti viską" @@ -38,17 +38,20 @@ msgstr "" "Tikslo langas neatnaujintas. Galbūt Jūs uždarėte pagrindinį langą arba Jūsų " "naršyklė blokuoja atnaujinimus tarp langų dėl nustatyto saugumo." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Paieška" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Paieška" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Duomenų bazės komentaras: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Lentelės komentarai" @@ -133,7 +136,7 @@ msgstr "Lentelės komentarai" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -146,8 +149,8 @@ msgstr "Stulpelis" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -159,13 +162,13 @@ msgstr "Tipas" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -184,8 +187,8 @@ msgid "Links to" msgstr "Sąryšis su" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -201,10 +204,10 @@ msgstr "Komentarai" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -220,10 +223,10 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -250,7 +253,7 @@ msgstr "Pažymėti visus" msgid "Unselect All" msgstr "Atžymėti visus" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Nenurodytas duombazės vardas!" @@ -264,77 +267,77 @@ msgstr "Duombazė %s pervadinta į %s" msgid "Database %s has been copied to %s" msgstr "Duombazė %s buvo nukopijuota į %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Pervadinti duombazę į" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Komanda" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Pašalinti duombazę" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Duombazė %s ištrinta." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Pašalinti duombazę (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopijuoti duombazę į" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tik struktūra" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktūra ir duomenys" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tik duomenys" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prieš kopijuojant" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Pridėti %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Pridėti apribojimą" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Pereiti į nukopijuotą duombazę" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Palyginimas" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -342,24 +345,24 @@ msgid "" msgstr "" "phpMyAdmin konfigūracijos talpinimo vieta išjungta. %sIšsiaiškinti kodėl%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Ryšių schema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Lentelė" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -370,33 +373,33 @@ msgstr "Eilutės" msgid "Size" msgstr "Dydis" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "šiuo metu naudojama" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Sukurta" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Paskutinis atnaujinimas" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Paskutinis patikrinimas" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -405,7 +408,7 @@ msgstr[1] "%s lentelės" msgstr[2] "%s lentelių" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -435,7 +438,7 @@ msgid "Descending" msgstr "Mažėjimo tvarka" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Rodyti" @@ -456,8 +459,8 @@ msgid "Del" msgstr "Pakeičiant" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Arba" @@ -526,17 +529,19 @@ msgstr[0] "%s atitikmuo lentelėje %s" msgstr[1] "%s atitikmenys lentelėse %s" msgstr[2] "%s atitikmenų lentelėse %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Peržiūrėti" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -579,156 +584,141 @@ msgstr "Lentelės(ių) viduje:" msgid "Inside column:" msgstr "Stulpelio viduje:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Įterpti" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktūra" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Šalinti" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Išvalyti" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Lentelės reikšmės %s ištuštintos" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Rodinys (view) %s buvo panaikintas" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Lentelė %s panaikinta" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Rodinys (View)" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Dauginimas" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Sumos" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Pasirinktus:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Pažymėti visus" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Atžymėti visus" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Eksportuoti" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Išvalyti" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Šalinti" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Patikrinti lentelę" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimizuoti" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Redaguoti" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizuoti lentelę" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Duomenų žodynas" @@ -737,13 +727,13 @@ msgstr "Duomenų žodynas" msgid "Tracked tables" msgstr "Patikrinti lentelę" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -769,8 +759,8 @@ msgstr "Statusas" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Veiksmas" @@ -815,12 +805,12 @@ msgstr "Patikrinti lentelę" msgid "Database Log" msgstr "Duombazės žurnalas (log)" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "Stulpelio „%s“ reikšmės" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -898,7 +888,7 @@ msgstr "Nuoroda ištrinta." msgid "Showing bookmark" msgstr "Rodomos žymelės" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Žymė %s sukurta" @@ -926,7 +916,7 @@ msgstr "" "padidintumėte PHP laiko limitą." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Atgal" @@ -1007,11 +997,11 @@ msgstr "Tuščias prisijungimo adresas!" msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" @@ -1118,104 +1108,112 @@ msgid "Searching" msgstr "Paieška" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL užklausos langelis" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL užklausos langelis" + +#: js/messages.php:86 +#, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr "Vidinis" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Sąryšis ištrintas" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY sąryšis įdėtas" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Vidinis sąryšis įdėtas" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Klaida: Sąryšis neįdėtas." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Klaida: toks sąryšis jau yra." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Pagrindinės sąryšių sąvybės" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Išjungta" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Pasirinkti Foreign Key" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Pasirinkite laukus peržiūrai" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generuoti" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Pakeisti slaptažodį" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "Daugiau" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Uždaryti" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "Ankstesnis" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1223,247 +1221,247 @@ msgid "Next" msgstr "Kitas" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "Šiandien" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "sausio" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "vasario" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "kovo" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "balandžio" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "gegužės" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "birželio" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "liepos" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "rugpjūčio" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "rugsėjo" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "spalio" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "lapkričio" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "sausio" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "vasario" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "kovo" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "balandžio" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "gegužės" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "birželio" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "liepos" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "rugpjūčio" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "rugsėjo" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "spalio" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "lapkričio" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "gruodžio" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "Trečiadienis" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "Šeštadienis" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Sekmadienis" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Pirmadienis" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Antradienis" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Trečiadienis" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Ketvirtadienis" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Penktadienis" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Šeštadienis" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sekmadienis" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pirmadienis" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Antradienis" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Trečiadienis" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Ketvirtadienis" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Penktadienis" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Šeštadienis" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "valanda" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "minutė" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1541,9 +1539,9 @@ msgid "Comment" msgstr "Komentaras" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Redaguoti" @@ -1565,15 +1563,15 @@ msgid "" msgstr "" "Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Duombazės" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Klaida" @@ -1823,6 +1821,32 @@ msgstr "Atsisiųsti failą" msgid "Could not open file: %s" msgstr "Nepavyko atidaryti failo: %s" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Įterpti" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktūra" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "Užklausų statistika" @@ -1885,7 +1909,7 @@ msgstr "Blogas serverio indeksas: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Serveris" @@ -1941,7 +1965,7 @@ msgstr "MySQL atsakymas: " msgid "Failed to connect to SQL validator!" msgstr "Nepavyko prisijungti prie MySQL serverio" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Paaiškinti SQL" @@ -1953,11 +1977,11 @@ msgstr "Praleisti SQL užklausos aiškinimą" msgid "Without PHP Code" msgstr "be PHP kodo" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP kodas" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Atnaujinti" @@ -1966,7 +1990,7 @@ msgstr "Atnaujinti" msgid "Skip Validate SQL" msgstr "Praleisti SQL užklausos tikrinimą" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Patikrinti SQL užklausą" @@ -2064,7 +2088,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2087,14 +2111,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "struktūra" @@ -2215,7 +2239,7 @@ msgid "Set value: %s" msgstr "Nustatyti reikšmę: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Atstatyti numatytąsias reikšmes" @@ -2225,15 +2249,15 @@ msgstr "Leisti naudotojams adaptuoti šią reikšmę" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Išsaugoti" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Atstatyti į pradinę būseną" @@ -2371,102 +2395,98 @@ msgid "Confirm DROP queries" msgstr "Patvirtinti DROP užklausas" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "Pereiti į kitus laukelius galite naudojant Ctrl+rodyklių klavišus" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "Derinti (debug) SQL" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "Numatytoji rodymo kryptis" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "Rodyti krypti keičiamiems/sukuriamiems stulpeliams" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Kortelė kuri yra rodoma kai įeinama į duombazę" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Numatyta duombazės kortelė" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Kortelė kuri yra rodoma kai įeinama į serverį" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Įprastinė serverio kortelė" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Kortelė kuri rodoma kai įeinama į lentelę" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Numatytoji lentelės kortelė" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Rodyti dvejetainį turinį kaip HEX (šešioliktainį) pagal numatymą" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Rodyti dvejetainį turinį kaip HEX (šešioliktainį)" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" "Rodyti duombazės sąrašą kaip paprastą sąrašą vietoje išskleidžiamojo sąrašo" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Rodyti duomenų bazes kaip sąrašą" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Rodyti serverius kaip sąrašą" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "Redaguoti SQL užklausas iškylančiame lange" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "Redaguoti lange" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 msgid "Display errors" msgstr "Rodyti klaidas" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "Rinkti klaidas" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "Rodyti piktogramas įspėjimams, klaidoms ir informaciniams pranešimams" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "Piktograminės klaidos" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2474,32 +2494,32 @@ msgstr "" "Nustatyti sekundžių ribą po kurios scenarijus (skirptas) negalės veikti " "([kbd]0[/kbd] nėra ribos)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Ilgiausias vykdymo laikas" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Išsaugoti į failą" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Failo simbolių koduotė:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formatas" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Glaudinimas" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2507,360 +2527,360 @@ msgstr "Glaudinimas" msgid "Put columns names in the first row" msgstr "Stulpelių pavadinimus įrašyti pirmame įraše (eilutėje)" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "Laukų reikšmės apskliaustos" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Laukų reikšmės baigiasi simboliu" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Pakeisti NULL į" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "Pašalinti CRLF simbolius (stulpelio) laukeliuose" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "Laukai baigiasi" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Eilutės (įrašai) baigiasi" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "Excel variantas" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Duomenų bazės vardo šablonas" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Serverio vardo šablonas" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Lentelės vardo šablonas" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 msgid "Dump table" msgstr "Parodyti lentelę" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Įterpti lentelės antraštę" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Lentelės antraštė" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Include table caption" msgid "Continued table caption" msgstr "Įterpti lentelės antraštę" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Pavadinimo raktas" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME tipas" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Sąryšiai" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 msgid "Export method" msgstr "Eksporto metodas" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Išsaugoti serveryje" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Perrašyti esamus failus" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Atsiminti failo vardo šabloną" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL suderinamumo režimas" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "Tikrinti sintaksę kai įterpiami duomenys" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Sukūrimo/atnaujinimo/tikrinimo datos" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy msgid "Use delayed inserts" msgstr "Naudoti užlaikytus įterpimus" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Atsisakyti išorinių raktų tikrinimo" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Naudoti šešioliktainę BLOB'ui" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy msgid "Use ignore inserts" msgstr "Naudoti užlaikytus įterpimus" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Didžiausias sukurtos užklausos ilgis" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 msgid "Export type" msgstr "Eksportavimo tipas" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Naudoti transakciją visam eksportui" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "Eksportavimo laikas UTC" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Priverstinai naudoti saugų prisijungimą kol naudojamasi phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Naudoti SSL susijungimą" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Naršymo režimas" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Adaptuoti naršymo režimą" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "Pasirinkti numatytuosius nustatymus" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "Kūrėjas" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "Nustatymai phpMyAdmin tobulintojams (kūrėjams)" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Redagavimo režimas" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Adaptuoti redagavimo režimą" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Eksportuoti numatytąsias reikšmes" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Pasirinkti numatytuosius eksportavimo nustatymus" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Galimybės" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 msgid "General" msgstr "Bendrinis" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "Nustatyti keletą dažniausiai naudojamų nustatymų" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importuoti" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Importuoti numatytąsias reikšmes" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Adaptuoti numatytuosius bendrus importavimo nustatymus" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Importuoti/eksportuoti" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Naudoti importavimo ir eksportavimo katalogus ir suspaudimo nustatymus" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Duomenų bazių rodymo nustatymai" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigacijos rėmelis" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Adaptuoti navigacijos rėmelio išvaizdą" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Serveriai" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Serverių rodymo nustatymai" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Lentelės" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Lentelių rodymo nustatymai" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Pagrindinis rėmelis" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document rašyklė" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Kiti branduolio nustatymai" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Kiti nustatymai" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Puslapis:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Užklausų langas" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Adaptuoti užklausos lango nustatymus" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Saugumas" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2868,23 +2888,23 @@ msgstr "" "Atkreipkite dėmesį, kad phpMyAdmin yra tik vartotojo sąsaja ir jo galimybės " "neapsiriboja MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Pagrindiniai nustatymai" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 msgid "Authentication" msgstr "Atpažinimas" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "Atpažinimo nustatymai" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Serverio nustatymai" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -2892,15 +2912,15 @@ msgstr "" "Išplėstinė serverio konfigūracija, nekeiskite šių nustatymų nebent žinote " "kam jie skirti" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Įvesti serverio ryšio (jungimosi) nustatymus" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "Konfigūracijos laikmena" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -2910,54 +2930,54 @@ msgstr "" "papildomų galimybių, žiūrėti [a@Documentation.html#linked-tables]phpMyAdmin " "konfigūracijos laikmena[/a] dokumentacijoje" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Adaptuoti eksportavimo nustatymus" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Adaptuoti importavimo numatytąsias reikšmes" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Adaptuoti navigacijos rėmelį" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Adaptuoti pagrindinė rėmelį" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL užklausos" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL užklausos langelis" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Adaptuoti nuorodas rodomas SQL užklausos langelyje" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "SQL užklausų nustatymai" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL užklausų istorija" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2965,43 +2985,43 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Paleidimas (pagrindinis)" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Adaptuoti paleidimo (pagrindinį) puslapį" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Kortelės" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Pasirinkti kaip norite, kad veiktų kortelės" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "Teksto laukeliai" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "Adaptuoti teksto įvedimo laukelius" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "Perspėjimai" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Išjungti keletą perspėjimų kuriuos rodo phpMyAdmin" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3009,15 +3029,15 @@ msgstr "" "Įjungti [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] glaudinimą importavimo " "ir eksportavimo nustatymams" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Papildomas parametras iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3025,11 +3045,11 @@ msgstr "" "Jeigu įjungta, phpMyAdmin tęsia įvairių-sakinių užklausų paleidinėjimą netgi " "jei viena užklausa nepavyksta" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignoruoti įvairias sakinių klaidas" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3039,21 +3059,21 @@ msgstr "" "vykdymo laiko ribos. Gali būti naudinga importuojant didelius failus, tačiau " "gali sugadinti tranzakcijas." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Dalinis importas: leisti pertrauktis" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignoruoti pasikartojančias eilutes" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Pakeisti lentelės turinį failo duomenimis " -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3061,139 +3081,139 @@ msgstr "" "Numatytasis formatas; žinokite, kad šis sąrašas priklauso nuo vietos " "(duombazė, lentelė) ir tik SQL visada pasiekiamas" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Įkelto failo formatas" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Naudoti LOCAL raktažodį" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put columns names in the first row" msgid "Column names in first row" msgstr "Stulpelių pavadinimus įrašyti pirmame įraše (eilutėje)" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Neimportuoti tuščių eilučių (įrašų)" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, fuzzy #| msgid "Import currencies (ex. $5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Importuoti valiutas (pavyzdžiui. $5.00 į 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 #, fuzzy #| msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" "Importuoti procentus kaip dešimtainius (pavyzdžiui. 12.00% į .12)" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Praleisti įrašų(užklausų) skaičių nuo pradžios" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Dalinis importas: praleisti užklausas" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nenaudokite AUTO_INCREMENT nulinėms reikšmėms" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Kiek įrašų (eilučių) gali būti įdėti per vieną kartą" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Įkeltų eilučių skaičius" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Logotipą rodyti kairiame rėmelyje" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Rodyti logotipą" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Rodyti serverio pasirinkimus viršuje kairiame rėmelyje" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Rodyti serverių pasirinkimą" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Rodyti duombazes medyje" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "Simboliai kurie atskiria duombazes į atskiras medžio šakas" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Duombazės medžio skyriklis" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "Tik maža versija; rodyti duombazės medį (skyriklis nustatomas žemiau)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Rodyti duombazes medyje" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Išjungti tai jeigu norite matyti visas duombazes iškart" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Naudoti mažą versiją" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Maksimalus lentelių medžio gylis" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Simboliai kurie atskiria lenteles į skirtingas medžio šakas" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Lentelės medžio skyriklis" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "Adresas kur nuves logotipas esantis navigacijos rėmelyje" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logotipo saito adresas" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3201,27 +3221,27 @@ msgstr "" "Atidaryti susijusį puslapį pagrindiniame lange ([kbd]pagrindiniame[/kbd]) " "arba ([kbd]naujame[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logotipas nukreipia į nuorodą" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Paryškinti serverį užvedus pelės žymekliu" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Įjungti paryškinimą" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Naudoti mažiau grafiškas korteles" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Lengvos kortelės" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" @@ -3229,11 +3249,11 @@ msgid "" msgstr "" "Didžiausias leistinas simbolių kiekis naudojamas SQL užklausai parodyti" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3244,21 +3264,21 @@ msgstr "" "lengva pamiršti atsijungi iš kitų skirtingų serverių (prie kurių esate " "prisijungę)." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Ištrinti visus slapukus atsijungiant" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3270,56 +3290,56 @@ msgstr "" "egzistuojančioje sesijoje ir bus ištrinta naršyklės uždarymo momentu. " "Rekomenduojama nepatikimose aplinkose." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Prisijungimo slapuko saugojimas" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Prisijungimo slapuko galiojimas" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 #, fuzzy #| msgid "Double size of textarea for LONGTEXT fields" msgid "Double size of textarea for LONGTEXT columns" msgstr "Padvigubinti dydį LONGTEXT'o textarea laukelių" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "Didesnis textarea LONGTEXT'ui" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "Naudoti piktogramas pagrindiniame puslapyje" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Maksimalus SQL rodymo ilgis" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "Naudotojai negali nustatyti didesnės reikšmės" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Maksimalus skaičius rodomų duombazių kairiame rėmelyje ir duombazių sąraše" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Didžiausias skaičius duombazių" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3329,29 +3349,29 @@ msgstr "" "rinkinys turi daugiau eilučių, „Ankstesnis“ ir „Kitas“ saito nuorodos bus " "parodytos." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Maksimalus skaičius eilučių rodymui" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Didžiausias skaičius lentelių" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "mcrypt įspėjimas" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3359,85 +3379,85 @@ msgstr "" "Skaičius leidžiamų paskirti baitų scenarijui (skriptui), pvz., [kbd]32M[/" "kbd] ([kbd]0[/kbd] neriboja)" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Atminties apribojimai" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "Rodyti kairėje pusėje esančią šalinimo nuorodą" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "Rodyti dešinėje pusėje esančių šalinimo nuorodą" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "Naudoti natūralią tvarką rikiuojant lentelių ir duombazių pavadinimus" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "Natūrali tvarka" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Naudoti tik piktogramas (ikonas), tik tekstą arba abu" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Piktograminė navigacijos juostelė" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 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:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip išvedimo buferis" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Numatytoji rikiavimo tvarka" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Naudoti ilgalaikius prisijungimus prie MySQL duombazių" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Ilgalaikiai sujungimai" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Trūksta phpMyAdmin konfigūracijos saugojimo lentelės" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Piktograminės lentelių operacijos" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Neleisti redaguoti BLOB ir BINARY stulpelių" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "Apsaugoti dvejetainius stulpelius" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3451,170 +3471,170 @@ msgstr "" "išjungta, naudoja JS-programas rodyti užklausų istoriją (prarandamos " "uždarius langą)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Nuolatinė užklausų istorija" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Kiek užklausų laikoma istorijoje" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Užklausų istorijos ilgis" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Parodoma kortelė kai atidaromas naujas užklausos langas" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Numatytoji užklausos lango kortelė" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "Užklausos lango aukštis (taškais)" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "Užklausos lango aukštis" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "Užklausos lango plotis (taškais)" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "Užklausos lango plotis" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" "Pasirinkti kokios funkcijos bus naudojamos ženklų rinkinio (koduotės) " "konvertavimui" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Įrašymo varikliukas" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 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:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "Pakartoti antraštes" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "Rodyti pagalbos mygtuką vietoje dokumentacijos teksto" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "Rodyti pagalbos mygtuką" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Katalogas kur eksportai gali būti išsaugomi serveryje" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Išsaugoti katalogą" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Palikite tuščią, jei nenaudojamas" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Palikite tuščią nutylėtoms reikšmėms" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Leisti prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Leisti prisijungti kaip root" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 #, fuzzy msgid "Compress connection to MySQL server" msgstr "Nepavyko prisijungti prie MySQL serverio" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 #, fuzzy msgid "Compress connection" msgstr "Naudoti SSL susijungimą" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Susijungimo tipas" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Kontroliuoti naudotojų slaptažodį" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3622,86 +3642,86 @@ 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Kontroliuoti naudotoją" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Suskaičiuoti lenteles kai rodomas duombazių sąrašas" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Suskaičiuoti lenteles" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Neleisti matyti INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Kokius PHP plėtinius naudoti; Jūs turėtumėte naudoti mysqli jei palaikoma" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Naudoti PHP išplėtimą" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Slėpti duombazes" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL užklausų istorijos lentelė" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Serverio adresas" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Atsijungimo nuoroda" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Bandyti prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3710,252 +3730,252 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "duomenų bazės vardas" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Serverio jungtis" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Sąryšių lentelė" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES komanda" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Prisijungimo sesijos vardas" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Prisijungimo adresas" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Serverio prievadas (socket)" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Įjungti SSL susijungimams prie MySQL serverio" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Naudoti SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF schema: lentelės koordinatės" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "Rodyti lentelės stulpelius" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "Pridėti DROP DATABASE" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "Pridėti DROP TABLE" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "Pridėti DROP VIEW" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Parametrai" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "Automatiškai sukurti versijas" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 #, fuzzy msgid "Verbose check" msgstr "Versijos patikrinimas" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Leisti rodyti visas eilutes (įrašus)" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Rodyti slaptažodžio keitimo formą" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Rodyti duombazės sukūrimo formą" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "Rodyti laukelių tipus" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Rodyti funkcijų laukelius redagavimo/įterpimo režime" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Rodyti funkcijų laukelius" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -3963,42 +3983,42 @@ msgstr "" "Rodyti nuorodą į [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "išvedimą" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Rodyti phpinfo() nuorodą" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Rodyti išsamią MySQL serverio informaciją" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Rodyti SQL užklausas" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Leisti rodyti duombazių ir lentelių statistiką (pavyzdžiui vietos naudojimą)" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Rodyti statistika" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Rodyti duombazės komentarą vietoje jos pavadinimo" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4006,38 +4026,38 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Rodyti lentelės komentarą vietoj jos pavadinimo" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Praleisti užrakintas lenteles" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Slaptažodis" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4045,80 +4065,80 @@ msgstr "" "[strong]Įspėjimas:[/strong] reikalauja PHP SOAP įskiepio arba PEAR SOAP, kad " "būtų įdiegtas" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Vartotojo vardas" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Pasiūlyti naują duombazės pavadinimą" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 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:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "Suhosin įspėjimas" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 msgid "Textarea columns" msgstr "Textarea laukeliai" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "Naršyklės lango pavadinimas kai duombazė yra pasirinkta" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "Naršyklės lango pavadinimas kai niekas nepasirinkta" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "Default title" msgstr "Numatytasis pavadinimas" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 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:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "Naršyklės lango pavadinimas kai lentelė yra pasirinkta" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4126,58 +4146,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Įkelties katalogas" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Leisti paiešką visoje vidinėje duombazėje" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Naudoti duombazės paiešką" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Patikrinti ar naujausia versija" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4206,74 +4226,74 @@ msgid "Signon authentication" msgstr "Nustatomas tapatumas..." #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV naudojant LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS darbaknygė" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX darbaknygė" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document skaičiuoklė" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Customization" msgid "Custom" msgstr "Adaptavimas" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Duombazės eksportavimo nustatymai" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Duomenys" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV formatas MS Excel programai" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document rašyklė" @@ -4312,7 +4332,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus." #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Įvykiai" @@ -4341,8 +4361,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegijos" @@ -4354,7 +4374,7 @@ msgstr "" msgid "Return type" msgstr "Gražinimo tipas" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4383,18 +4403,18 @@ msgid "Details..." msgstr "Detalės..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Pakeisti slaptažodį" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Nėra slaptažodžio" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Įveskite dar kartą" @@ -4415,8 +4435,8 @@ msgstr "Sukurti naują duombazę" msgid "Create" msgstr "Sukurti" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Nėra privilegijų" @@ -4533,8 +4553,8 @@ msgid "Compression:" msgstr "Glaudinti:" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Ne" @@ -4693,7 +4713,7 @@ msgstr "Rūšiuoti pagal raktą" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4728,8 +4748,8 @@ msgstr "Rodyti dvejetainį turinį" msgid "Show BLOB contents" msgstr "Rodyti BLOB turinį" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Paslėpti" @@ -4747,47 +4767,47 @@ msgstr "Įvykdyti išsaugotą užklausą" msgid "The row has been deleted" msgstr "Eilutė ištrinta" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "užklausą vykdoma" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Rodomi įrašai" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "iš viso " -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Redaguoti" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Spausdinti rezultatus (su pilnais tekstais)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 msgid "Display chart" msgstr "Rodyti diagramą" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Sąryšis nerastas" @@ -5212,12 +5232,12 @@ msgid "Data dump options" msgstr "Duomenų išvedimo nustatymai" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Sukurta duomenų kopija lentelei" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Sukurta duomenų struktūra lentelei" @@ -5260,9 +5280,9 @@ msgstr "Rodyti MIME-tipus" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Darbinė stotis" @@ -5421,40 +5441,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedūros" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funkcijos" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Apribojimai lentelei" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPAI LENTELEI" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "SĄRYŠIAI LENTELEI" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struktūra peržiūrėjimui" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 #, fuzzy msgid "Stand-in structure for view" msgstr "Tik struktūra" @@ -5488,43 +5508,43 @@ msgstr "SQL rezultatas" msgid "Generated by" msgstr "Sugeneravo" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Eiti į duomenų bazę" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "nustatymai" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Eiti į lentelę" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Eiti į rodinį (view)" @@ -5577,7 +5597,7 @@ msgstr "Neteisingas stulpelių skaičius CSV įvedimo eilutėje %d." msgid "DocSQL" msgstr "docSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Lentelės vardas" @@ -5657,7 +5677,7 @@ msgid "Charset" msgstr "Koduotė" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Dvejetainis" @@ -5948,8 +5968,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Naudotojo vardas" @@ -5968,7 +5988,7 @@ msgid "Variable" msgstr "Kintamasis" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Reikšmė" @@ -5987,34 +6007,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Pridėti pavaldžiojo serverio (slave) dauginimo (replication) naudotoją" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Bet kurį vartotoją" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Bet kurį prisijungimo adresą" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokali darbinė stotis" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Dabartinis serveris" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Naudoti Host lentelę" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6254,11 +6274,11 @@ msgstr "Vykdyti SQL sakinius duombazėje %s" msgid "Columns" msgstr "Stulpelių vardai" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Sukurti nuorodą į šią SQL užklausą" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme (bookmark)" @@ -6290,7 +6310,7 @@ msgstr "Peržiūra" msgid "Location of the text file" msgstr "Tekstiniai SQL užklausų failai" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "web serverio katalogas atsiuntimams" @@ -6452,21 +6472,21 @@ msgid "" msgstr "" "Ši transformacija neturi paaiškinimo.
Klauskite autoriaus ką %s daro." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Saugojimo variklis" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "SKAIDINIO (PARTITION) apibrėžimas" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "Pridėti %s stulpelį(-ius)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." @@ -6692,8 +6712,8 @@ msgstr "Daugiau nustatymų" msgid "Protocol version" msgstr "Protokolo versija" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Naudotojas" @@ -6730,7 +6750,7 @@ msgstr "Oficialus phpMyAdmin tinklalapis" msgid "Mailing lists" msgstr "El. pašto grupė" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6742,7 +6762,7 @@ msgstr "" "nesaugi, bei gali būti atvira įsilaužimams, todėl rekomenduotina pakeisti " "šias parinktis." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6751,7 +6771,7 @@ msgstr "" "Savo PHP konfigūracijoje Jūs įjungėte mbstring.func_overload. Šis nustatymas " "nėra suderinamas su phpMyAdmin ir gali pažeisti Jūsų duomenis!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6761,7 +6781,7 @@ msgstr "" "simbolių kodaciją. Be mbstring plėtinio phpMyAdmin negali tesingai skaidyti " "stringų, todėl galite sulaukti netikėtų rezultatų." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6769,11 +6789,11 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Nustatymų faile nurodykite slaptą frazę (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6783,7 +6803,7 @@ msgstr "" "yra Jūsų phpMyAdmin kataloge. Jūs turėtumėte jį pašalinti iškart po to kai " "sukonfigūruosite phpMyAdmin." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6792,7 +6812,7 @@ msgstr "" "Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. %" "sPaaiškinimas%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6802,7 +6822,7 @@ msgstr "" "kurios phpMyAdmin funkcijos gali būti išnykę. Pavyzdžiui, navigacijos " "rėmelis automatiškai neatsinaujins." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6811,7 +6831,7 @@ msgstr "" "Jūsų PHP MySQL bibliotekos versija %s skiriasi nuo Jūsų MySQL serverio " "versijos %s. Tai gali sukelti nenuspėjamą elgesį." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7143,113 +7163,113 @@ msgstr "Saugojimo varikliai" msgid "View dump (schema) of databases" msgstr "Peržiūrėti duombazių išrašą (schemą)" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Įtraukti visas teises, išskyrus GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Leisti keisti pašalinti saugimas programas (stored routines)." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Leisti kurti naujas duombazes ir lenteles." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Leidžia sukurti naujas saugomas programas (stored routines)." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Leisti kurti naujas lenteles." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Leisti kurti laikinas lenteles." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Leidžia sukurti naujus rodinius (view)." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Leisti šalinti duomenis." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Leisti šalinti duombazes ir lenteles." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Leisti šalinti lenteles." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Leisti nustatyti įvykius įvykių planuoklėje (scheduler)" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Leisti įvykdyti saugomas programas (stored routines)." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Leisti įterpti ir eksportuoti duomenis iš failų." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant " "privilegijų lentelės." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Leisti įterpti ir modifikuoti indeksus." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Leisti įterpti ir modifikuoti duomenis." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Leisti užrakinti lenteles procesų metu." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Riboti prisijungimų kiekį per valandą." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Riboti užklausų kiekį per valandą" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7258,62 +7278,62 @@ msgstr "" "kiekį per valandą." # gal labiau kartu vykstančių -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Riboti prisijungimų kiekį per valandą (kartu vykstančių)." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Leisti peržiūrėti procesus visiems naudotojams" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Negalioja šioje MySQL versijoje." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Leisti perkrauti serverio nustatymus, bei išvalyti laikinąją atmintį (cache)." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 #, fuzzy msgid "Needed for the replication slaves." msgstr "Reikalinga atstatyti slave darbinei stočiai" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Leisti skaityti duomenis." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Suteikti prieigą prie visų duombazių." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Leisti išjungti serverį." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7323,155 +7343,155 @@ msgstr "" "administratoriaus darbų, tokių kaip globalių reikšmių modifikavimui ar " "vartotojų atjungimui." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Leisti įterpti ir pašalinti trigerius." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Leisti modifikuoti duomenis." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Be teisių." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Nėra" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globalios teisės" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Specifinės duombazių privilegijos" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Išteklių apribojimai" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Prisijungimo informacija" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nekeisti slaptažodžio" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "Nerasta jokių naudotojų." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Vartotojas %s jau yra!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs pakeitėte privilegijas %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jūs panaikinote privilegijas %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Šaliname: %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nepasirinta vartotojų trynimui!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Perkraunamos privilegijos" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Redaguoti privilegijas" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Panaikinti" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Bet kurį(ią)" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Vartotojų peržiūra" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Suteikti" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Sukurti naują vartotoją" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Pašalinti pažymėtus vartotojus" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" "Pašalinti duombazes, turinčias tokius pačius vardus kaip ir vartotojai." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7483,49 +7503,49 @@ msgstr "" "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti. " -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Sukurti privilegijas šiai duombazei" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Norint naudoti _ ir % simblius, prieš juos prirašykite \\" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... palikti seną vartotoją." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... pašalinti seną vartotoją iš vartotojų lentelės." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7533,42 +7553,42 @@ msgstr "" " ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti " "privilegijas" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Naudotojo duombazė(s)" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "Be" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Sukurti duombazę su tokiu pat vardu ir jai suteikti visas privilegijas" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Suteikti visas privilegijas duombazei „%s“" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Vartotojai turintys priėjimą prie „%s“" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globalus" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "priklausantis nuo duombazės tipo" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "pakaitos simbolis" @@ -8502,7 +8522,7 @@ msgstr "Nepavyko prisijungti prie MySQL serverio" msgid "Could not connect to the target" msgstr "Nepavyko prisijungti prie MySQL serverio" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8987,12 +9007,12 @@ msgstr "Rodoma SQL užklausa" msgid "Validated SQL" msgstr "Patikrinti SQL užklausą" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Nuorodos Antraštė" @@ -9001,70 +9021,70 @@ msgstr "Nuorodos Antraštė" msgid "Table %1$s has been altered successfully" msgstr "Lentelė %1$s sėkmingai pakeista" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "Dėl jo ilgio,
šis laukelis gali būti neredaguojamas (tinas)" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Panaikinti BLOB saugyklos rodyklę" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Dvejetainis - nekeisti" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Įkelti BLOB saugyklą" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Įterpti kaip naują įrašą" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Rodyti įterptą užklausą" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "ir tada" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9171,12 +9191,12 @@ msgstr "" msgid "Redraw" msgstr "Perpiešti" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Lentelė %s jau yra!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Sukurta %1$s lentelė." @@ -9661,11 +9681,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Paaiškinimas" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Neturite pakankamai teisių čia būti!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profilis papildytas." @@ -9678,6 +9698,9 @@ msgstr "VIEW vardas" msgid "Rename view to" msgstr "Pervadinti lentelę į" +#~ msgid "Field navigation using Ctrl+Arrows" +#~ msgstr "Pereiti į kitus laukelius galite naudojant Ctrl+rodyklių klavišus" + #~ msgid "SVG" #~ msgstr "SVG" diff --git a/po/lv.po b/po/lv.po index b89fdb5dc2..e16baa2d4a 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Rādīt visu" @@ -37,17 +37,20 @@ msgstr "" "vai arī Jūsu pārlūkprogramma bloķe starplogu saskarsmi Jūsu drošības " "iestādījumu dēļ." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Meklēt" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "Meklēt" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -121,7 +124,7 @@ msgid "Database comment: " msgstr "Datubāzes komentārs: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Komentārs tabulai" @@ -132,7 +135,7 @@ msgstr "Komentārs tabulai" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -147,8 +150,8 @@ msgstr "Kolonnu nosaukumi" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -160,13 +163,13 @@ msgstr "Tips" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nulle" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -185,8 +188,8 @@ msgid "Links to" msgstr "Linki uz" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -202,10 +205,10 @@ msgstr "Komentāri" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nē" @@ -221,10 +224,10 @@ msgstr "Nē" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -251,7 +254,7 @@ msgstr "Iezīmēt visu" msgid "Unselect All" msgstr "Neiezīmēt neko" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Datubāzes nosaukums ir tukšs!" @@ -265,80 +268,80 @@ msgstr "Datubāze %s tika pārsaukta par %s" msgid "Database %s has been copied to %s" msgstr "Datubāze %s tika pārkopēta uz %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Komanda" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Datubāze %s tika izdzēsta." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nav datubāzu" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopēt datubāzi uz" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tikai struktūra" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktūra un dati" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tikai dati" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Pievienot ierobežojumus" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Pārslēgties uz nokopēto datubāzi" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Izkārtojumi" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -350,24 +353,24 @@ msgstr "" "Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu " "kāpēc, klikškiniet %sšeit%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relāciju shēma" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabula" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -378,33 +381,33 @@ msgstr "Rindas" msgid "Size" msgstr "Izmērs" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "lietošanā" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Izveidošana" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Pēdējā atjaunošana" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Pēdējā pārbaude" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -413,7 +416,7 @@ msgstr[0] "%s tabula(s)" msgstr[1] "%s tabula(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -443,7 +446,7 @@ msgid "Descending" msgstr "Dilstošā secībā" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Rādīt" @@ -464,8 +467,8 @@ msgid "Del" msgstr "Dzēst" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Vai" @@ -538,17 +541,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s rezultāti tabulā %s" msgstr[1] "%s rezultāti tabulā %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Apskatīt" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -593,157 +598,142 @@ msgstr "Tabulā(s):" msgid "Inside column:" msgstr "Tabulā(s):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Pievienot" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktūra" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Likvidēt" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Iztukšot" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabula %s tika iztukšota" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Lauks %s tika izdzēsts" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabula %s tika izdzēsta" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 #, fuzzy msgid "Replication" msgstr "Relācijas" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Kopumā" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Ar iezīmēto:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Iezīmēt visu" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Neiezīmēt neko" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Eksports" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Iztukšot" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Likvidēt" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Pārbaudīt tabulu" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimizēt tabulu" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Restaurēt tabulu" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizēt tabulu" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Datu vārdnīca" @@ -751,13 +741,13 @@ msgstr "Datu vārdnīca" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -784,8 +774,8 @@ msgstr "Statuss" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Darbība" @@ -832,12 +822,12 @@ msgstr "Pārbaudīt tabulu" msgid "Database Log" msgstr "Datubāze" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -908,7 +898,7 @@ msgstr "Ieraksts tika dzēsts." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -931,7 +921,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Atpakaļ" @@ -1011,11 +1001,11 @@ msgstr "Hosts nav norādīts!" msgid "The user name is empty!" msgstr "Lietotāja vārds nav norādīts!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Parole nav norādīta!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" @@ -1118,115 +1108,121 @@ msgid "Searching" msgstr "Meklēt" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL vaicājums" #: js/messages.php:85 +#, fuzzy +msgid "Show query box" +msgstr "SQL vaicājums" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relāciju pārskats" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Iekšējās relācijas" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Galvenās relāciju īpašības" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Izslēgts" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izvēlieties, kuru lauku rādīt" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Mainīt paroli" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "P" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nav" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Iepriekšējie" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1234,96 +1230,96 @@ msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1331,176 +1327,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dec" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1576,9 +1572,9 @@ msgid "Comment" msgstr "Komentāri" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Labot" @@ -1599,15 +1595,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Datubāzes" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Kļūda" @@ -1852,6 +1848,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Pievienot" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktūra" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1917,7 +1939,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Serveris" @@ -1973,7 +1995,7 @@ msgstr "MySQL teica: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Izskaidrot SQL" @@ -1985,11 +2007,11 @@ msgstr "Neizskaidrot SQL" msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Izveidot PHP kodu" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Atjaunot" @@ -1998,7 +2020,7 @@ msgstr "Atjaunot" msgid "Skip Validate SQL" msgstr "Nepārbaudīt SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Pārbaudīt SQL" @@ -2096,7 +2118,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2120,14 +2142,14 @@ msgid "Select from the web server upload directory %s:" msgstr "web servera augšupielādes direktorija" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Struktūra" @@ -2258,7 +2280,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2268,15 +2290,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Saglabāt" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Atcelt" @@ -2398,136 +2420,132 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Pārsaukt datubāzi par" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Rādīt iespējas" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Saglabāt kā failu" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Tabulas kodējums:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formats" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2537,71 +2555,71 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Likt kolonnu nosaukumus pirmajā rindā" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Lauki iekļauti iekš" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Glābjoša (escape) rakstzīme ir" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Aizvietot NULL ar" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Rindas atdalītas ar" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Rindas atdalītas ar" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel redakcija" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2609,197 +2627,197 @@ msgstr "Faila nosaukuma šablons" msgid "Dump table" msgstr "%s tabula(s)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Iekļaut tabulas virsrakstu" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Tabulas virsraksts" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Tabulas virsraksta turpinājums" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Etiķetes atslēga" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME tips" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relācijas" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Eksporta veids" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Pārrakstīt eksistējošos failus" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Izveidošanas/Atjaunošanas/Piekļuves datumi" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Lietot aizturētos INSERT" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Nepārbaudīt ārējās atslēgas" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Lietot IGNORE INSERTS" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Eksporta veids" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Iekļaut eksportu transakcijā" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Eksporta veids" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV dati" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "General" msgstr "Uzģenerēja" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2807,206 +2825,206 @@ msgstr "" msgid "Import" msgstr "Eksports" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Importēt failus" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "Serveris" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabulas" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentācija" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Lapas numurs:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentācija" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL vēsture" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3014,280 +3032,280 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Statuss" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tabula" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Lietot teksta lauku" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Rādu kolonnu komentārus" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3295,428 +3313,428 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Resursu ierobežojumi" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Mainīt datu kārtošanas laukus" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Konekcijas" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Nav tabulu" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Defragmentēt tabulu" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Nav datubāzu" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "Servera izvēle" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3725,300 +3743,300 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Datubāze" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Servera ID" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Restaurēt tabulu" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Servera izvēle" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Rādu kolonnu komentārus" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Parametrs" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "Servera versija" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "Rādīt tabulas" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Rādīt pilnos vaicājumus" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Rindas statistika" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4026,122 +4044,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Parole" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Lietotājvārds:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Noklusēts" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4149,58 +4167,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4221,72 +4239,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Datubāzu eksporta opcijas" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Dati" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV dati MS Excel formātā" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4325,7 +4343,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4354,8 +4372,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilēģijas" @@ -4367,7 +4385,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4396,18 +4414,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Mainīt paroli" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Nav paroles" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Atkārtojiet" @@ -4430,8 +4448,8 @@ msgstr "Izveidot jaunu datubāzi" msgid "Create" msgstr "Izveidot" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Nav privilēģiju" @@ -4568,8 +4586,8 @@ msgid "Compression:" msgstr "Kompresija" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Nav" @@ -4727,7 +4745,7 @@ msgstr "Kārtot pēc atslēgas" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4764,8 +4782,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4783,49 +4801,49 @@ msgstr "Izpildīt iegrāmatoto vaicājumu" msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Nogalināt" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "vaicājumā" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Parādu rindas" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "kopā" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Labot" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Drukas skats (ar pilniem tekstiem)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Rādīt PDF shēmu" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Links nav atrasts" @@ -5249,12 +5267,12 @@ msgid "Data dump options" msgstr "Datubāzu eksporta opcijas" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Dati tabulai" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Tabulas struktūra tabulai" @@ -5311,9 +5329,9 @@ msgstr "Pieejamie MIME tipi" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Hosts" @@ -5459,43 +5477,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "Procesi" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Funkcija" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Ierobežojumi tabulai" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPI TABULAI" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELĀCIJAS TABULAI" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Tikai struktūra" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5528,43 +5546,43 @@ msgstr "SQL rezultāts" msgid "Generated by" msgstr "Uzģenerēja" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5615,7 +5633,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5694,7 +5712,7 @@ msgid "Charset" msgstr "Kodējums" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binārais" @@ -5979,8 +5997,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Lietotājvārds" @@ -5999,7 +6017,7 @@ msgid "Variable" msgstr "Mainīgais" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Vērtība" @@ -6018,34 +6036,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Jebkurš lietotājs" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Lietot teksta lauku" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Jebkurš hosts" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokāls" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Šis hosts" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Lietot hostu tabulu" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6301,11 +6319,11 @@ msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s" msgid "Columns" msgstr "Kolonnu nosaukumi" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" @@ -6337,7 +6355,7 @@ msgstr "Tikai apskatīt" msgid "Location of the text file" msgstr "Teksta faila atrašanās vieta" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "web servera augšupielādes direktorija" @@ -6503,22 +6521,22 @@ msgid "" "author what %s does." msgstr "Šai transformācijai nav apraksta.
Jautājiet autoram, ko %s dara." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Pievienot %s lauku(s)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6746,8 +6764,8 @@ msgstr "Galvenās relāciju īpašības" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Lietotājs" @@ -6785,7 +6803,7 @@ msgstr "Oficiālā phpMyAdmin mājaslapa" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6797,21 +6815,21 @@ msgstr "" "MySQL serveris strādā ar šo noklusēto variantu, ir atvērts uzbrukumiem, un " "Jums tiešām jāaiztaisa šis drošības caurums." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6819,18 +6837,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfigurācijas fails tagad prasa slepeno paroli (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6839,21 +6857,21 @@ msgstr "" "Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu " "kāpēc, klikškiniet %sšeit%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7185,118 +7203,118 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Apskatīt datubāzu dampu (shēmu)" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Iekļauj visas privilēģijas, izņemot GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Ļauj mainīt esošo tabulu struktūru." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Ļauj veidot jaunas datubāzes un tabulas." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Ļauj veidot pagaidu tabulas." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Ļauj dzēst datus." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Ļauj dzēst datubāzes un tabulas." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Ļauj dzēst tabulas." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Ļauj importēt/eksportēt datus no/uz failiem." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Ļauj pievienot lietotājus un privilēģijas bez privilēģiju tabulu " "pārlādēšanas." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Ļauj ievietot un mainīt datus." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Ļauj bloķēt tabulas tekošajai darbībai." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ierobežo vaicājumu skaitu, ko lietotājs var mosūtīt uz serveri stundas laikā." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7304,61 +7322,61 @@ msgstr "" "Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko " "lietotājs var izpildīt stundas laikā." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nedarbojas šajā MySQL versijā." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nepieciešams replikāciju kopijām." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Ļauj lasīt datus." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Dod pieeju pilnam datubāzu sarakstam." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Ļauj apstādināt serveri." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7368,158 +7386,158 @@ msgstr "" "Nepieciešams vairumam administratīvo operāciju, kā globālo mainīgo maiņa vai " "citu lietotāju procesu nogalināšana." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Ļauj mainīt datus." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Nav privilēģiju." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nav" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globālās privilēģijas" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrācija" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resursu ierobežojumi" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Piekļuves informācija" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nemainīt paroli" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Lietotāji netika atrasti." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs modificējāt privilēģijas objektam %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jūs atņēmāt privilēgijas lietotājam %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Lietotāja %s parole tika veiksmīgi mainīta." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Dzēšam %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Pārlādējam privilēģijas" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Mainīt privilēģijas" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Atsaukt" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Jebkurš" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Lietotāju pārskats" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Piešķirt" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Pievienot jaunu lietotāju" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Dzēst izvēlētos lietotājus" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7532,51 +7550,51 @@ msgstr "" "lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %" "spārlādēt privilēģijas%s pirms Jūs turpināt." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Pievienot privilēģijas uz sekojošo datubāzi" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Aizstājējzīmes _ un % jāaizsargā ar \\ priekšā, lai izmantotu tās burtiski" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... paturēt veco lietotāju." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... dzēst veco lietotāju no lietotāju tabulas." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " "viņu." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7584,44 +7602,44 @@ msgstr "" " ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nav" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Lietotāji, kam ir pieja datubāzei "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globāls" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "datubāzei specifisks" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "aizstājējzīme" @@ -8518,7 +8536,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8928,12 +8946,12 @@ msgstr "" msgid "Validated SQL" msgstr "Pārbaudīt SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Nosaukums" @@ -8942,73 +8960,73 @@ msgstr "Nosaukums" msgid "Table %1$s has been altered successfully" msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Sava garuma dēļ,
šis lauks var būt nerediģējams " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binārais - netiek labots" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL" "+bultiņas, lai pārvietotos jebkurā vietā" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9116,12 +9134,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabula %s tika izdzēsta" @@ -9621,11 +9639,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Apraksts" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Jums nav pietiekoši tiesību, lai atrastos šeit tagad!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profils tika modificēts." diff --git a/po/mk.po b/po/mk.po index 08487661ed..c6514237d4 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: macedonian_cyrillic \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "прикажи ги сите" @@ -37,17 +37,20 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Пребарување" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "Пребарување" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -121,7 +124,7 @@ msgid "Database comment: " msgstr "Коментар на базата на податоци:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Коментар на табелата" @@ -132,7 +135,7 @@ msgstr "Коментар на табелата" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -147,8 +150,8 @@ msgstr "Имиња на колони" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -160,13 +163,13 @@ msgstr "Тип" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -185,8 +188,8 @@ msgid "Links to" msgstr "Врски кон" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -202,10 +205,10 @@ msgstr "Коментари" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Не" @@ -221,10 +224,10 @@ msgstr "Не" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -251,7 +254,7 @@ msgstr "избери се" msgid "Unselect All" msgstr "ништо" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Името на базата на податоци не е зададено!" @@ -265,80 +268,80 @@ msgstr "Базата на податоци %s е преименувана во % msgid "Database %s has been copied to %s" msgstr "Базата на податоци %s е ископирана во %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Наредба" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Базата на податоци %s не е прифатена" -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Базата на податоци не постои" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Копирај ја базата на податоци во" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структура и податоци" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Само податоци" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пред копирање" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Додади ограничувања" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Префрли се на копираната база на податоци" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Подредување" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -350,24 +353,24 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Релациона шема" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Табела" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -378,33 +381,33 @@ msgstr "Записи" msgid "Size" msgstr "Големина" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "се користи" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Направено" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Последна измена" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -413,7 +416,7 @@ msgstr[0] "%s табела" msgstr[1] "%s табела" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -443,7 +446,7 @@ msgid "Descending" msgstr "Опаѓачки редослед" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Прикажи" @@ -464,8 +467,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "или" @@ -538,17 +541,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s погодоци во табелата %s" msgstr[1] "%s погодоци во табелата %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Преглед" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -593,157 +598,142 @@ msgstr "во табела(и):" msgid "Inside column:" msgstr "во табела(и):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Нов запис" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Структура" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Бриши" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Испразни" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Табелата %s е испразнета" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Прегледот %s е избришан" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Табелата %s е избришана" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Поглед" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 #, fuzzy msgid "Replication" msgstr "Релации" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Вкупно" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е основно складиште на овој MySQL сервер." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Обележаното:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "обележи ги сите" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "ниедно" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Извоз" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Испразни" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Бриши" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Проверка на табелата" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Оптимизација на табелата" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Поправка на табелата" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Анализа на табелата" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Речник на податоци" @@ -751,13 +741,13 @@ msgstr "Речник на податоци" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -784,8 +774,8 @@ msgstr "Статус" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Акција" @@ -832,12 +822,12 @@ msgstr "Проверка на табелата" msgid "Database Log" msgstr "База на податоци" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -908,7 +898,7 @@ msgstr "Маркерот е избришан." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -931,7 +921,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Назад" @@ -1009,11 +999,11 @@ msgstr "Името на host-от е празно!" msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" @@ -1115,116 +1105,122 @@ msgid "Searching" msgstr "Пребарување" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL упит" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL упит" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Складишта" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Измените се сочувани" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Релационен поглед" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Внатрешни релации" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Општи особини на релациите" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Оневозможено" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Избери полиња за прикажување" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генерирај" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Промена на лозинка" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "нема" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1232,96 +1228,96 @@ msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "мај" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1329,176 +1325,176 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "дек" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1576,9 +1572,9 @@ msgid "Comment" msgstr "Коментари" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Промени" @@ -1599,15 +1595,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "База на податоци" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Грешка" @@ -1853,6 +1849,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Нов запис" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Структура" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1919,7 +1941,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Сервер" @@ -1976,7 +1998,7 @@ msgstr "MySQL порака: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Објасни SQL" @@ -1988,11 +2010,11 @@ msgstr "Прескокни ги објаснувањата на SQL-от" msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Освежи" @@ -2001,7 +2023,7 @@ msgstr "Освежи" msgid "Skip Validate SQL" msgstr "Прескокни ја проверката на SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Провери SQL" @@ -2101,7 +2123,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2125,14 +2147,14 @@ msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Структура" @@ -2263,7 +2285,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2273,15 +2295,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Сочувај" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Поништи" @@ -2403,138 +2425,134 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Преименувај ја базата на податоци во" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Ажурирање на следниот запис" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Прикажи својства" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Сочувај како податотека" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Кодна страна на податотеката:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Компресија" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2544,71 +2562,71 @@ msgstr "Компресија" msgid "Put columns names in the first row" msgstr "Стави ги имињата на полињата во првата редица" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Полињата се раздвоени со" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Escape карактер      " -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Замени NULL со" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Линиите се завршуваат со" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Линиите се завршуваат со" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel издание" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2616,198 +2634,198 @@ msgstr "Шаблон на име на податотека" msgid "Dump table" msgstr "%s табела" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Вклучи и коментар на табелата" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Коментар на табела" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Продолжен коментар на табелите" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Ознака на клучот" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-типови" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Релации" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тип на извоз" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Препиши ги постоечките податотеки" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Името на полето стави го во '" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Датуми на креирање/ажурирање/проверка" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Користи одложен внес" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Исклучи проверка на надворешни клучеви" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Игнорирај дупликати при внесување" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Тип на извоз" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Изврши извоз во трансакција" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Тип на извоз" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV формат" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Генерирај" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2815,208 +2833,208 @@ msgstr "" msgid "Import" msgstr "Извоз" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Увоз на податотека" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "Сервер" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Табели" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Документација" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Број на страници:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Документација" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL упит" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL упит" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL упит" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL историја" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3024,280 +3042,280 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Статус" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Табела" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Користи текст поле" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Замени ги податоците во табелата со подаците од податотеката" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Стави ги имињата на полињата во првата редица" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Прикажувам коментари на колоните" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3305,431 +3323,431 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Ограничување на ресурси" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Промени го редоследот во табелата" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Нишки на поправка" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Основен директориум на податоците" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Конекции" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Нема табела" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Дефрагментирај ја табелата" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Базата на податоци не постои" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "Избор на сервер" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3738,301 +3756,301 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "База на податоци" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "ID на серверот" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Поправка на табелата" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Избор на сервер" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Прикажувам коментари на колоните" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Име" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Режим на автоматско опоравување" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "Прикажи табели" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Прикажи комплетни упити" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Статистики за записите" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4040,122 +4058,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Лозинка" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Додади/избриши колона" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Default" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4163,58 +4181,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4235,72 +4253,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Опции за извоз на бази на податоци" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Податоци" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4339,7 +4357,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4368,8 +4386,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Привилегии" @@ -4381,7 +4399,7 @@ msgstr "Рутини" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4412,18 +4430,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Промена на лозинка" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Нема лозинка" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Повтори внес" @@ -4446,8 +4464,8 @@ msgstr "Креирај нова база на податоци" msgid "Create" msgstr "Креирај" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Нема привилегии" @@ -4584,8 +4602,8 @@ msgid "Compression:" msgstr "Компресија" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "нема" @@ -4743,7 +4761,7 @@ msgstr "Подредување по клуч" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4780,8 +4798,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4799,49 +4817,49 @@ msgstr "Изврши запамтен упит" msgid "The row has been deleted" msgstr "Записот е избришан" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Прекини" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "во упитот" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Приказ на записи од " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "вкупно" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Промени" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Преглед за печатење (целосен текст)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF шема" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Врската не е пронајдена" @@ -5285,12 +5303,12 @@ msgid "Data dump options" msgstr "Опции за извоз на бази на податоци" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Приказ на податоци од табелата" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Структура на табелата" @@ -5347,9 +5365,9 @@ msgstr "Достапни MIME-типови" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -5495,42 +5513,42 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Функција" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Ограничувања за табелите" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛА" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ НА ТАБЕЛИТЕ" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Само структура" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5565,43 +5583,43 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерирал" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5652,7 +5670,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5731,7 +5749,7 @@ msgid "Charset" msgstr "Кодна страна" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Бинарен" @@ -6017,8 +6035,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Назив на корисник" @@ -6037,7 +6055,7 @@ msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Вредност" @@ -6056,34 +6074,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Било кој корисник" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Користи текст поле" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Било кој host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Овој host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Користи ја табелата на host-от" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6340,11 +6358,11 @@ msgstr "Изврши SQL упит(и) на базата %s" msgid "Columns" msgstr "Имиња на колони" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." @@ -6376,7 +6394,7 @@ msgstr "Види само" msgid "Location of the text file" msgstr "Локација на текстуалната податотека" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "директориум за праќање на веб серверот " @@ -6542,22 +6560,22 @@ msgstr "" "Нема опис за оваа трансформација.
Ве молиме прашајте го авторот што ја " "направил %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Вид на складиште" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додади %s полиња" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6801,8 +6819,8 @@ msgstr "Општи особини на релациите" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Корисник" @@ -6840,7 +6858,7 @@ msgstr "официјален веб сајт на phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6852,7 +6870,7 @@ msgstr "" "работи со овие подесувања, отворен е за упди, и навистина треба да го " "поправите овој сигурносен ризик." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6862,7 +6880,7 @@ msgstr "" "опција не е компатибилна со phpMyAdmin и може да доведе до грешки во некои " "податоци!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6872,7 +6890,7 @@ msgstr "" "мултибајт каратер сет. Без mbstring екстензиите phpMyAdmin не може исправно " "да ги раздвојува стринговите и тоа може да доведе до неочекувани резултати." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6880,18 +6898,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурациската податотека бара лозинка (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6900,21 +6918,21 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7246,117 +7264,117 @@ msgstr "Видови на складишта" msgid "View dump (schema) of databases" msgstr "Прикажи содржина (шема) на базите" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Ги вклучува сите привилегии освен GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Дозволува промена на структурата на постоечките табели." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Дозволува промена и бришење на stored рутини." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Дозволува креирање на нови бази на податоци и табели." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Дозволува креирање на stored рутини." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Дозволува креирање на нови табела." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Дозволува креирање на привремени табели..." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Дозволува креирање на нови погледи." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Дозволува бришење на податоци." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Дозволува бришење на бази на податоци и табели." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Дозволува бришење на табели." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Дозволува извршување на stored рутини." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Дозволува увоз на податоци и нивен извоз во податотеки." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволува додавање на корисници и привилегии без повтроно вчитавање на " "табелата на привилегии." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Дозволува креирање и бришење на клучева." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Дозволува вметнување и замена на података." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Дозволува заклучување на табели на тековните процеси." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Го ограничува бројот на упити кои корисникот може да ги постави на серверот " "за еден час." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7364,63 +7382,63 @@ msgstr "" "Го ограничува бројот на команди кои ги менуваат табелите или базите на " "податоци кои корисникот може да ги изврши за еден час." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Нема ефект во оваа верзији на MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот " "на серверот." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава права на кориснику да праша каде се главните/помошни сервери." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Потребно заради помошните сервери за репликација." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Дозволува читање на податоци." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Дава пристап на комплетната листа на базите на податоци." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволува извршување на SHOW CREATE VIEW упити." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Дозволува гасење на серверот." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7430,162 +7448,162 @@ msgstr "" "Неопходно за повеќето административни опции како што е подесување на " "глобални променливи или прекин на процеси наостанатите корисници." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозволува креирање и бришење на клучева." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Дозволува измена на податоци." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Нема привилегии." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "нема" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Напомена: MySQL имињата на привилегите мора да бидат со латинични букви " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Глобални привилегии" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Администрација" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ограничување на ресурси" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува " "ограничувањата." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Податоци за најавувањето" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Немој да ја менуваш лозинката" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисникот не е пронајден." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s веќе постои!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Додадовте нов корисник." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Ги ажуриравте привилегиите за %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ги забранивте привилегиите за %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинката за %s успешно е променета." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Бришам %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Повторно ги вчитувам привилегиите" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Изабраните корисници успешно се избришани." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Промена на привилегии" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Забрани" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Било кој" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Преглед на корисници" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Овозможи" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Додади нов корисник" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Избриши ги селектираните корисници" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" "Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7599,49 +7617,49 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Привилегии врзани за колоните" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Додади привилегии на следната база" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Додади привилегии на следната табела" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Направи нов корисник со исти привилегии и ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... сочувај го стариот." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... избриши ги старите од табелата на корисници." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7649,44 +7667,44 @@ msgstr "" " ... избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "нема" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегии за базата на податоци "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Корисници кои имаат пристап "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "глобално" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "џокер" @@ -8582,7 +8600,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8992,12 +9010,12 @@ msgstr "" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Назив" @@ -9006,16 +9024,16 @@ msgstr "Назив" msgid "Table %1$s has been altered successfully" msgstr "Изабраните корисници успешно се избришани." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Функција" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " @@ -9023,58 +9041,58 @@ msgstr "" "Поради големина на полето
можеби нема да може да ја менувате неговата " "содржина" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Бинарен - не менувај" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9184,12 +9202,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Корисник %s веќе постои!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Табелата %s е избришана" @@ -9686,11 +9704,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Опис" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Немате право на пристап овде!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Профилот е променет" diff --git a/po/mn.po b/po/mn.po index acb9d36d3b..7e42bcade1 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Бүгдийг харах" @@ -36,17 +36,20 @@ msgstr "" "Зорилтот хөтчийн цонх шинэчлэгдсэнгүй. Магадгүй та эх цонхыг хаасан эсвэл " "таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Хайх" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -61,14 +64,14 @@ msgstr "Хайх" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -120,7 +123,7 @@ msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Хүснэгтийн тайлбар" @@ -131,7 +134,7 @@ msgstr "Хүснэгтийн тайлбар" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -146,8 +149,8 @@ msgstr "Баганын нэрс" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -159,13 +162,13 @@ msgstr "Төрөл" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Хоосон" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -184,8 +187,8 @@ msgid "Links to" msgstr "Холбоос" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -201,10 +204,10 @@ msgstr "Тайлбар" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Үгүй" @@ -220,10 +223,10 @@ msgstr "Үгүй" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -250,7 +253,7 @@ msgstr "Бүгдийг сонгох" msgid "Unselect All" msgstr "Бүх сонгосныг болих" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Өгөгдлийн сангийн нэр хоосон!" @@ -264,81 +267,81 @@ msgstr "ӨС %s-н нэр нь %s-ээр солигджээ" msgid "Database %s has been copied to %s" msgstr "ӨС %s нь %s руу хуулагдлаа" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Команд" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "%s өгөгдлийн сан устгагдсан." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Зөвхөн бүтэц" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Зөвхөн өгөгдөл" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "хуулахын өмнө CREATE DATABASE" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Нэмэх %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Тогтмол нэмэх" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Хуулагдсан ӨС руу шилжих" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Жишилт" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -350,24 +353,24 @@ msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Хамааралтай схем" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Хүснэгт " #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -378,33 +381,33 @@ msgstr "Мөрүүд" msgid "Size" msgstr "Хэмжээ" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "хэрэглэгдэж байна" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Үүсгэлт" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Сүүлийн шинэчлэл" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Сүүлийн шалгалт" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -413,7 +416,7 @@ msgstr[0] "%s хүснэгт(үүд)" msgstr[1] "%s хүснэгт(үүд)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -443,7 +446,7 @@ msgid "Descending" msgstr "Буурахаар" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Харах" @@ -464,8 +467,8 @@ msgid "Del" msgstr "Устгах" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Эсвэл" @@ -538,17 +541,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Хөтлөх" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -593,156 +598,141 @@ msgstr "Хүснэгт(үүд) дотор:" msgid "Inside column:" msgstr "Хүснэгт(үүд) дотор:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Оруулах" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Бүтэц" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Устгах" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Хоосон" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Хүснэгт %s нь хоослогдлоо" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Харц %s нь устгагдсан" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Харц" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Олшруулалт" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Нийт" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Сонгогдсонтой:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Бүгдийг чагтлах" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Бүх чагтыг болих" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Гаргах" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Хоосон" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Устгах" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Хүснэгт шалгах" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Хүснэгтийг зүгшрүүлэх" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Хүснэгт засах" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Хүснэгтийг задлах" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Өгөгдлийн толь" @@ -750,13 +740,13 @@ msgstr "Өгөгдлийн толь" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -782,8 +772,8 @@ msgstr "Статус" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Үйлдэл" @@ -826,12 +816,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -901,7 +891,7 @@ msgstr "Тэмдэглэгээ устгагдсан." msgid "Showing bookmark" msgstr "Тэмдэглэл харуулах" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" @@ -924,7 +914,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Өмнөх" @@ -1004,11 +994,11 @@ msgstr "Хостын нэр хоосон!" msgid "The user name is empty!" msgstr "Хэрэглэгчийн нэр хоосон!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Нууц үг хоосон байна!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" @@ -1113,114 +1103,122 @@ msgid "Searching" msgstr "Хайх" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "асуултад" #: js/messages.php:85 #, fuzzy +#| msgid "Showing SQL query" +msgid "Show query box" +msgstr "SQL асуудал харуулах" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Хөдөлгүүрүүд" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Холбоо устав" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Дотоод холбоо нэмэгдэв" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Хаагдсан" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Харуулах талбарыг соль" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Бий болгох" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Нууц үг солих" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Да" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Байхгүй" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Өмнөх" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1228,96 +1226,96 @@ msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Хоёртын " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "5-р" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1325,176 +1323,176 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "12р" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1568,9 +1566,9 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Засах" @@ -1591,15 +1589,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Өгөгдлийн сангууд" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Алдаа" @@ -1843,6 +1841,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Оруулах" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Бүтэц" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Databases statistics" @@ -1910,7 +1934,7 @@ msgstr "Сервэрийн буруу индекс нь: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Сервэр" @@ -1964,7 +1988,7 @@ msgstr "MySQL хэлэх нь: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL тайлбар" @@ -1976,11 +2000,11 @@ msgstr "SQL тайлбарлахыг орхих" msgid "Without PHP Code" msgstr "PHP-кодгүй" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP-код үүсгэх" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Да.дуудах" @@ -1989,7 +2013,7 @@ msgstr "Да.дуудах" msgid "Skip Validate SQL" msgstr "SQL шалгалтыг алгасах" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL-ийг батлах" @@ -2089,7 +2113,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2113,14 +2137,14 @@ msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2250,7 +2274,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2260,15 +2284,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Хадгалах" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Да.эхлэх" @@ -2389,137 +2413,133 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Relational schema" msgid "Default display direction" msgstr "Хамааралтай схем" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Дараагийн мөрийг засах" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Онцлог харуулах" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Илгээх" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Тогтнол" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Шахалт" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2529,68 +2549,68 @@ msgstr "Шахалт" msgid "Put columns names in the first row" msgstr "Эхний мөрт талбаруудын нэрийг тавих" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Талбарыг хаасан" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Талбарыг нээсэн" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "NULL-ыг орлуулах нь" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Шугамыг төгсгөгч" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Шугамыг төгсгөгч" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-засвар" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2598,401 +2618,401 @@ msgstr "" msgid "Dump table" msgstr "%s хүснэгт(үүд)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Хүснэгтийн гарчиг холбогдсон" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Хүснэгтийн гарчиг" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Үргэлжилсэн хүснэгтийн гарчиг" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-төрөл" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Хамаарал" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Гаргах төрөл" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Файл(ууд)-г дарж бичих" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Хүснэгт ба талбарын нэрийг буруу хашилтаар хаах" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL нийцтэй горим" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Үүсгэлт/Шинэчлэлт/Огноо шалгах" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Давталттай оруулалт хэрэглэх" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Оруулалтыг үл тоох" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Үүсгэгдсэн асуудлын хамгийн их урт" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Гаргах" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Хэлэлцээр дэх гаргалтыг хаах" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Бий болгох" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Оруулах" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Сервэрүүд" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Хүснэгт" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Баримт" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Хуудасны дугаар:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Баримт" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" msgstr "Сервэрийн утгууд болон тохиргоонууд" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL түүх" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3000,279 +3020,279 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Давхардсан мөрүүдийг алгасах" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Оруулсан файлын тогтнол" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "LOCAL түлхүүр үг хэрэглэх" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Эхний мөрт талбаруудын нэрийг тавих" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Баганын тайлбарыг харуулж байна" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3280,426 +3300,426 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Харуулах/Нуух зүүн цэс" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Thread засах" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3708,297 +3728,297 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "өгөгдлийн сангийн нэр" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Баганын тайлбарыг харуулж байна" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Баримтжуулал" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Авто сэргээх горим" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4006,121 +4026,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Нууц үг" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Багана нэмэх/устгах" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Анхдагч" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4128,58 +4148,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4200,43 +4220,43 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV хэрэглэх нь LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Database export options" msgid "Database export options" @@ -4244,30 +4264,30 @@ msgstr "ӨС гаргах сонголтууд" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Өгөгдөл" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV өгөгдлийг MS Excel-ээр" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4306,7 +4326,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4335,8 +4355,8 @@ msgid "Designer" msgstr "Дизайнч" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Онцгой эрхүүд" @@ -4348,7 +4368,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4377,18 +4397,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Нууц үг солих" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Нууц үггүй" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Дахин бич" @@ -4411,8 +4431,8 @@ msgstr "Шинэ ӨС үүсгэх" msgid "Create" msgstr "Үүсгэх" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Онцгой эрхгүй" @@ -4556,8 +4576,8 @@ msgid "Compression:" msgstr "Шахалт" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Байхгүй" @@ -4727,7 +4747,7 @@ msgstr "Түлхүүрээр эрэмбэлэх" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4762,8 +4782,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Нуух" @@ -4781,49 +4801,49 @@ msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" msgid "The row has been deleted" msgstr "Мөр устгагдсан" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Алах" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "асуултад" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Мөрүүдийг харуулж байна " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "Нийт" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Солих" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схем харуулах" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Холбоос олдсонгүй" @@ -5261,12 +5281,12 @@ msgid "Data dump options" msgstr "ӨС гаргах сонголтууд" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Хүснэгтийн өгөгдлийг устгах" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Хүснэгтийн бүтэц" @@ -5323,9 +5343,9 @@ msgstr "Идэвхтэй MIME-төрлүүд" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -5471,40 +5491,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Процедурүүд" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Функцүүд" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "Хүснэгтийн MIME-төрлүүд" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "Хүснэгтийн хамаарал" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Харах бүтэц" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5539,42 +5559,42 @@ msgstr "SQL-үр дүн" msgid "Generated by" msgstr "Үүсгэгч" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5626,7 +5646,7 @@ msgstr "CSV оруулалтад %d мөрөнд буруу талбарын т msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Хүснэгтийн нэр" @@ -5705,7 +5725,7 @@ msgid "Charset" msgstr "Кодлол" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Хоёртын " @@ -5990,8 +6010,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Хэрэглэгчийн нэр" @@ -6010,7 +6030,7 @@ msgid "Variable" msgstr "Хувьсагч" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Утга" @@ -6029,34 +6049,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Дурын хэрэглэгч" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Дурын хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Энэ хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Хост хүснэгт хэрэглэх" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6310,11 +6330,11 @@ msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажилл msgid "Columns" msgstr "Баганын нэрс" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" @@ -6346,7 +6366,7 @@ msgstr "Зөвхөн харах" msgid "Location of the text file" msgstr "Бичвэрфайлын байрлал" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "web-сервэр түлхэх хавтас" @@ -6511,22 +6531,22 @@ msgid "" msgstr "" "Энэ өөрчлөлтөд Тайлбаргүй нь идэвхтэй.
%s-ын зохиогчийг асууна уу." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Агуулах хөдөлгүүр" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s талбар(ууд) нэмэх" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6757,8 +6777,8 @@ msgstr "Ерөнхий хамаатай онцлог" msgid "Protocol version" msgstr "Протоколын хувилбар" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Хэрэглэгч" @@ -6795,7 +6815,7 @@ msgstr "phpMyAdmin-ын албан ёсны вэб сайт" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6806,7 +6826,7 @@ msgstr "" "нууц үггүй) агуулжээ. Таны MySQL сервэр энэ анхдагчаар ажиллаж байгаа нь хэн " "ч урилгагүй орох боломжийг өгнө. Та хамгаалалтын асуудлаа засах хэрэгтэй" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6815,7 +6835,7 @@ msgstr "" "Таны PHP тохируулгад mbstring.func_overload нээлттэй байна. Энэ сонголт " "phpMyAdmin -д бүрэн боломжгүй бөгөөд зарим өгөгдөл алдагдаж болзошгүй!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6825,7 +6845,7 @@ msgstr "" "mbstring extension үгүйгээр phpMyAdmin нь тэмдэгт мөрийг зөв хувааж чадахгүй " "буюу буруу үр дүн гарч магадгүй." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6833,18 +6853,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Тохиргооны файл одоо нууцлал шаардаж байна (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6853,21 +6873,21 @@ msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7198,113 +7218,113 @@ msgstr "Агуулах хөдөлгүүрүүд" msgid "View dump (schema) of databases" msgstr "ӨС-ийн схем харах" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Шинэ харц үүсгэхийг зөвшөөрөх." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Өгөгдөл устгахыг зөвшөөрөх." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх " -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Хүснэгт устгахыг зөвшөөрөх." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг " "зөвшөөрөх." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7312,58 +7332,58 @@ msgstr "" "Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг " "хязгаарлах." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Өгөгдөл уншихыг зөвшөөрөх." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Сервэрийг унтраахыг зөвшөөрөх." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7372,159 +7392,159 @@ msgstr "" "Хэрэв ХИ холболтын тоо гүйцсэн ч холбогдохыг зөвшөөрөх. Бусад хэрэглэгчийн " "процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Өгөгдөл солихыг зөвшөөрөх." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Онцгой эрхгүй." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Байхгүй" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr " Хүснэгтийн тусгай онцгой эрхүүд" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Глобал онцгой эрх" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr " Онцгой эрх, өгөгдлийн сангийн эрх" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Зохион байгуулалт" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Нөөцийн хязгаар" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Нэвтрэх мэдээлэл" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Нууц үгийг солихгүй" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Хэрэглэгч олдсонгүй." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Хэрэглэгч %s оршин байна!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Онцгой эрх шинэчлэгдлээ" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Онцгой эрх %s -ыг хүчингүй болголоо" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-ы нууц үг солигдлоо." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "%s-г устгаж байна" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Онцгой эрхийг дахин дуудаж байна" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Онцгой эрхүүдийг засах" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Хүчингүй" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Дурын" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Хандив" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Шинэ хэрэглэгч нэмэх" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " "болгох." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7537,48 +7557,48 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... хуучныг үлдээх." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... хэрэглэгчийн хүснэгтүүдээс устгах." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7586,44 +7606,44 @@ msgstr "" " ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Байхгүй" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Хэрэглэгчдийн хандсан нь "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "загвар" @@ -8558,7 +8578,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8964,12 +8984,12 @@ msgstr "SQL асуудал харуулах" msgid "Validated SQL" msgstr "SQL-ийг батлах" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Хаяг" @@ -8978,73 +8998,73 @@ msgstr "Хаяг" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Browse foreign values" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Функц" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Яагаад гэвэл урт нь их,
энэ талбар засагдахгүй " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Хоёртын өгөгдөл - засагдахгүй " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "ба тэгээд" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Буцах" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9152,12 +9172,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Хүснэгт %s нь оршин байна!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -9649,11 +9669,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Тайлбар" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Танд хангалттай эрх байхгүй!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Профиль шинэчлэгдлээ." diff --git a/po/ms.po b/po/ms.po index afebecdd0e..70af3f52cc 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Papar semua" @@ -34,17 +34,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cari" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -59,14 +62,14 @@ msgstr "Cari" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -121,7 +124,7 @@ msgid "Database comment: " msgstr "Komen jadual" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Komen jadual" @@ -132,7 +135,7 @@ msgstr "Komen jadual" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -147,8 +150,8 @@ msgstr "Nama Kolum" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -160,13 +163,13 @@ msgstr "Jenis" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -185,8 +188,8 @@ msgid "Links to" msgstr "Pautan ke" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -202,10 +205,10 @@ msgstr "Komen" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Tidak" @@ -221,10 +224,10 @@ msgstr "Tidak" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -251,7 +254,7 @@ msgstr "Sila pilih pangkalan data" msgid "Unselect All" msgstr "Nyahpilih Semua" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 #, fuzzy msgid "The database name is empty!" msgstr "Nama jadual adalah kosong" @@ -266,81 +269,81 @@ msgstr "Jadual %s telah ditukarnama ke %s" msgid "Database %s has been copied to %s" msgstr "Jadual %s telah disalin ke %s." -#: db_operations.php:365 +#: db_operations.php:366 #, fuzzy msgid "Rename database to" msgstr "Tukarnama jadual ke" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Arahan" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy msgid "Remove database" msgstr "Tukarnama jadual ke" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "angkalan data %s telah digugurkan." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Tiada pangkalan data" -#: db_operations.php:442 +#: db_operations.php:445 #, fuzzy msgid "Copy database to" msgstr "Tiada pangkalan data" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Struktur sahaja" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Data sahaja" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -352,24 +355,24 @@ msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Skema Hubungan" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Jadual" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -380,13 +383,13 @@ msgstr "Baris" msgid "Size" msgstr "Saiz" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "sedang digunakan" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 #, fuzzy @@ -394,20 +397,20 @@ msgid "Creation" msgstr "Cipta" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgstr[0] "%s jadual" msgstr[1] "%s jadual" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "Menurun" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Papar" @@ -467,8 +470,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Atau" @@ -541,17 +544,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s padanan di dalam jadual %s" msgstr[1] "%s padanan di dalam jadual %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Lungsur" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -596,156 +601,141 @@ msgstr "Di dalam jadual:" msgid "Inside column:" msgstr "Di dalam jadual:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Selit" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktur" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Gugur" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Kosong" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Jadual %s telah dikosongkan" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Medan %s telah digugurkan" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Jadual %s telah digugurkan" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Jumlah" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Dengan pilihan:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Tanda Semua" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Nyahtanda Semua" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Eksport" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Kosong" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Gugur" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Periksa Jadual" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimakan jadual" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Baiki jadual" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Kamus Data" @@ -753,13 +743,13 @@ msgstr "Kamus Data" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -786,8 +776,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Aksi" @@ -834,12 +824,12 @@ msgstr "Periksa Jadual" msgid "Database Log" msgstr "Pangkalan Data" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -908,7 +898,7 @@ msgstr "TandaBuku telah dipadam." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -931,7 +921,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Undur" @@ -1010,11 +1000,11 @@ msgstr "Nama hos adalah kosong!" msgid "The user name is empty!" msgstr "Kata Pengenalan kosong!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Katalaluan adalah kosong!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" @@ -1110,115 +1100,121 @@ msgid "Searching" msgstr "Cari" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "kueri-SQL" #: js/messages.php:85 +#, fuzzy +msgid "Show query box" +msgstr "kueri-SQL" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Abai" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Paparan Hubungan" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Tidak Membenarkan" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pilih Medan untuk dipapar" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Dijana oleh" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ubah Katalaluan" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Isn" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Tiada" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Terdahulu" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1226,96 +1222,96 @@ msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mei" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1323,176 +1319,176 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dis" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "Records" msgid "Second" @@ -1567,9 +1563,9 @@ msgid "Comment" msgstr "Komen" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Ubah" @@ -1590,15 +1586,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "pangkalan data" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Ralat" @@ -1835,6 +1831,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Selit" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktur" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1899,7 +1921,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Pelayan" @@ -1955,7 +1977,7 @@ msgstr "MySQL berkata: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Terangkan Kod SQL" @@ -1967,11 +1989,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "Tanpa Kod PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Cipta Kod PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1980,7 +2002,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Melangkau Pengesahan SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Mengesahkan SQL" @@ -2078,7 +2100,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2102,14 +2124,14 @@ msgid "Select from the web server upload directory %s:" msgstr "direktori muatnaik pelayan-web" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Struktur" @@ -2240,7 +2262,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2250,15 +2272,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Simpan" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Ulangtetap" @@ -2380,135 +2402,131 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Statistik pangkalan data" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Paparkan Ciri-ciri" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Simpan sebagai fail" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Fail bagi set Aksara:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Mampatan" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2518,66 +2536,66 @@ msgstr "Mampatan" msgid "Put columns names in the first row" msgstr "Letakkan medan di baris pertama" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Medan disertai oleh" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Medan dilarikan oleh" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Baris ditamatkan oleh" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Baris ditamatkan oleh" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2585,199 +2603,199 @@ msgstr "" msgid "Dump table" msgstr "%s jadual" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 #, fuzzy msgid "Relations" msgstr "Operasi" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "Eksport" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy msgid "Use delayed inserts" msgstr "Penyelitan Lanjutan" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Penyelitan Lanjutan" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Eksport" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "data CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "General" msgstr "Dijana oleh" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2785,204 +2803,204 @@ msgstr "" msgid "Import" msgstr "Eksport" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Statistik pangkalan data" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "Pelayan" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Jadual-jadual" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Muka Surat:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "kueri-SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "kueri-SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "kueri-SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Skip Validate SQL" msgid "SQL Validator" msgstr "Melangkau Pengesahan SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2990,277 +3008,277 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Jadual" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "Tambah medan baru" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Ganti data jadual dengan fail" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Memaparkan Komen Kolum" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3268,420 +3286,420 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alter table order by" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Hubungan" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Tiada Jadual" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Tiada pangkalan data" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3690,299 +3708,299 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Pangkalan Data" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Baiki jadual" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Memaparkan Komen Kolum" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Penyataan" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "Versi Pelayan" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "Papar jadual" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Statistik Baris" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3990,122 +4008,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Katalaluan" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Namapengguna:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Tambah/Padam Kolum Medan" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Asal" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4113,58 +4131,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4185,73 +4203,73 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "Statistik pangkalan data" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Data" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV untuk sata MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4290,7 +4308,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4319,8 +4337,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilej" @@ -4332,7 +4350,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4361,18 +4379,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Ubah Katalaluan" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Tiada Katalaluan" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ulang-taip" @@ -4393,8 +4411,8 @@ msgstr "Cipta pangkalan data baru" msgid "Create" msgstr "Cipta" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Tiada Privilej" @@ -4528,8 +4546,8 @@ msgid "Compression:" msgstr "Mampatan" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Tiada" @@ -4687,7 +4705,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4724,8 +4742,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4743,49 +4761,49 @@ msgstr "" msgid "The row has been deleted" msgstr "Baris telah dipadam" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Bunuh" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "pada kueri" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Papar baris" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Ubah" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Papar Skema PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Pautan tidak dijumpai" @@ -5205,12 +5223,12 @@ msgid "Data dump options" msgstr "Statistik pangkalan data" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Melonggok data bagi jadual" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktur jadual bagi jadual" @@ -5261,9 +5279,9 @@ msgstr "Paparkan Ciri-ciri" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Hos" @@ -5406,43 +5424,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "Proses-proses" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Fungsi" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Struktur sahaja" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5475,43 +5493,43 @@ msgstr "Hasil SQL" msgid "Generated by" msgstr "Dijana oleh" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5562,7 +5580,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5639,7 +5657,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binari" @@ -5922,8 +5940,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Kata Pengenalan" @@ -5942,7 +5960,7 @@ msgid "Variable" msgstr "Pembolehubah" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Nilai" @@ -5962,34 +5980,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Sebarang pengguna" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Sebarang hos" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6242,11 +6260,11 @@ msgstr "Laksana kueri SQL pada pangkalan data %s" msgid "Columns" msgstr "Nama Kolum" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6278,7 +6296,7 @@ msgstr "Paparan sahaja" msgid "Location of the text file" msgstr "Lokasi bagi fail teks" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "direktori muatnaik pelayan-web" @@ -6441,21 +6459,21 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Tambah medan baru" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6626,8 +6644,8 @@ msgstr "Ciri-ciri hubungan am" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Pengguna" @@ -6665,7 +6683,7 @@ msgstr "Laman Rasmi phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6677,21 +6695,21 @@ msgstr "" "dilaksanakan dengan pelengkapan asas, ianya terdedah kepada pencerobohan, " "dan anda hendaklah membetulkan lubang keselamatan ini." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6699,18 +6717,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6719,21 +6737,21 @@ msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7063,111 +7081,111 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Lihat longgokan (skema) pangkalan data" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7175,220 +7193,220 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 #, fuzzy msgid "No privileges." msgstr "Tiada Privilej" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Tiada" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 #, fuzzy msgid "Global privileges" msgstr "Tiada Privilej" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:710 +#: server_privileges.php:709 #, fuzzy msgid "Login Information" msgstr "Informasi MasaJana" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Jangan tukar katalaluan" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Tiada pengguna dijumpai." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah mengemaskini privilej bagi %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Ubah Privilej" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "TarikBalik" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Sebarang" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 #, fuzzy msgid "Grant" msgstr "Cetak" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Tambah Pengguna Baru" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7397,91 +7415,91 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Tiada" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8377,7 +8395,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8787,12 +8805,12 @@ msgstr "" msgid "Validated SQL" msgstr "Mengesahkan SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Label" @@ -8801,72 +8819,72 @@ msgstr "Label" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Fungsi" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Kerana kepanjangannya,
medan ini tidak boleh diedit " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binari - jgn diubah" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: tbl_change.php:1052 +#: tbl_change.php:1054 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8970,12 +8988,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Jadual %s telah digugurkan" @@ -9465,11 +9483,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "tiada keterangan" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Anda tidak mempunyai hak mencukupi untuk berada disini sekarang!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil telah dikemaskini." diff --git a/po/nb.po b/po/nb.po index f0677b6fcb..adac440376 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-09-15 13:26+0200\n" "Last-Translator: \n" "Language-Team: norwegian \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Vis alle" @@ -37,17 +37,20 @@ msgstr "" "Målvinduet kunne ikke oppdateres. Muligens du har lukket modervinduet eller " "din nettleser blokkerer vindu-til-vindu oppdateringer av sikkerhetsårsaker." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Søk" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "Søk" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -121,7 +124,7 @@ msgid "Database comment: " msgstr "Database kommentar: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Tabellkommentarer" @@ -132,7 +135,7 @@ msgstr "Tabellkommentarer" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -145,8 +148,8 @@ msgstr "Kolonne" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -158,13 +161,13 @@ msgstr "Type" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -183,8 +186,8 @@ msgid "Links to" msgstr "Linker til" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -200,10 +203,10 @@ msgstr "Kommentarer" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nei" @@ -219,10 +222,10 @@ msgstr "Nei" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -249,7 +252,7 @@ msgstr "Velg alle" msgid "Unselect All" msgstr "Fjern alle valgte" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Databasen er uten navn!" @@ -263,77 +266,77 @@ msgstr "Databasen %s har endret navn til %s" msgid "Database %s has been copied to %s" msgstr "Databasen %s har blitt kopiert til %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Endre databasens navn til" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Kommando" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Fjern database" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har blitt slettet" -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopier databasen til" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Kun struktur" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Bare data" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Legg til %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Legg til begrensninger" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Bytt til kopiert database" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Sammenligning" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -341,22 +344,22 @@ msgid "" msgstr "" "phpMyAdmin konfigurasjonslager har blitt deaktivert. Finn ut hvorfor %sher%s." -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "Rediger eller eksporter relasjonsskjema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabell" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -367,33 +370,33 @@ msgstr "Rader" msgid "Size" msgstr "Størrelse" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "i bruk" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Opprettet" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Sist oppdatert" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Sist kontrollert" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -401,7 +404,7 @@ msgstr[0] "%s tabell" msgstr[1] "%s tabeller" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -431,7 +434,7 @@ msgid "Descending" msgstr "Synkende" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Vis" @@ -452,8 +455,8 @@ msgid "Del" msgstr "Slett" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Eller" @@ -521,17 +524,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s treff i tabell %s" msgstr[1] "%s treff i tabell %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Se på" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -573,156 +578,141 @@ msgstr "I tabell(ene):" msgid "Inside column:" msgstr "I kolonne:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Sett inn" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktur" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Slett" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Tøm" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har blitt tømt" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Visningen %s har blitt slettet" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har blitt slettet" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Overvåkning er aktiv." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Overvåkning er ikke aktiv." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Vis" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikering" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Sum" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard lagringsmotor for denne MySQL tjeneren." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Med avkrysset:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Merk alle" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Fjern merking" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Merk overheng" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Eksporter" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Tøm" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Slett" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Kontroller tabell" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimiser tabell" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Reparer tabell" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyser tabell" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dataordbok" @@ -730,13 +720,13 @@ msgstr "Dataordbok" msgid "Tracked tables" msgstr "Overvåkede tabeller" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -762,8 +752,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Handling" @@ -806,12 +796,12 @@ msgstr "Overvåk tabell" msgid "Database Log" msgstr "Databaselogg" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "Verdier for kolonnen \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "Skriv inn hver verdi i separate felter." @@ -890,7 +880,7 @@ msgstr "Bokmerket har blitt slettet." msgid "Showing bookmark" msgstr "Vis bokmerke" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Bokmerke %s opprettet" @@ -918,7 +908,7 @@ msgstr "" "øker php tidsgrensen." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Tilbake" @@ -995,11 +985,11 @@ msgstr "Vertsnavnet er tomt!" msgid "The user name is empty!" msgstr "Brukernavnet er tomt!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Passordet er blankt!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" @@ -1080,102 +1070,110 @@ msgid "Searching" msgstr "Søker" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "Slå av/på visning av spørreboks" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL spørringsboks" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL spørringsboks" + +#: js/messages.php:86 +#, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr "Inline Edit" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Endringene er lagret" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relasjon slettet" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relasjon lagt til" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Intern relasjon lagt til" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Feil: Relasjon ikke opprettet." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Feil: relasjoner eksisterer allerede." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Feil oppstod under lagring av Designerkoordinater." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Generelle relasjonsegenskaper" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Avslått" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Velg primærnøkkelen eller en unik nøkkel" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Velg kolonne for visning" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generer" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "Endre passord" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "Mer" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Utført" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1183,231 +1181,231 @@ msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "I dag" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "Januar" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "Februar" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "Mars" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "April" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "Juni" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "Juli" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "August" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "September" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "Oktober" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "November" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Des" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "Mandag" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "Fredag" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "Uke" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "Time" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "Minutt" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "Sekund" @@ -1484,9 +1482,9 @@ msgid "Comment" msgstr "Kommentar" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Rediger" @@ -1509,15 +1507,15 @@ msgstr "" "Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne " "fjernes." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Feil" @@ -1761,6 +1759,32 @@ msgstr "Last ned fil" msgid "Could not open file: %s" msgstr "Kunne ikke åpne fil: %s" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Sett inn" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktur" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "Spørringsstatistikk" @@ -1823,7 +1847,7 @@ msgstr "Ugyldig tjenerindeks: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Tjener" @@ -1877,7 +1901,7 @@ msgstr "MySQL sa: " msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke koble til SQL validerer!" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Forklar SQL" @@ -1889,11 +1913,11 @@ msgstr "Ikke forklar SQL" msgid "Without PHP Code" msgstr "uten PHP kode" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Lag PHP kode" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Oppdater" @@ -1902,7 +1926,7 @@ msgstr "Oppdater" msgid "Skip Validate SQL" msgstr "Ikke teste SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Test SQL" @@ -2000,7 +2024,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2024,14 +2048,14 @@ msgid "Select from the web server upload directory %s:" msgstr "webtjener opplastingskatalog" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "struktur" @@ -2154,7 +2178,7 @@ msgid "Set value: %s" msgstr "Sett verdi: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Gjennopprett standard verdi" @@ -2164,15 +2188,15 @@ msgstr "Tillat brukere å endre denne verdien" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Lagre" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Tilbakestill" @@ -2306,112 +2330,108 @@ msgid "Confirm DROP queries" msgstr "Bekreft DROP spørringer" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "Debug SQL" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Databasevisningsinnstillinger" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Fanen som vises når en database tas i bruk" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Standard databasefane" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Fanen som vises når en tjener tas i bruk" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Standard tjenerfane" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Fanen som vises når en tabell tas i bruk" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Standard tabellfane" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Vis binært innhold som HEX" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Vis binært innhold som HEX" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Vis databaser som en liste istedet for en nedfallsliste" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Vis databaser som en liste" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Vis tjenere som en liste istedet for en nedfallsliste" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Vis tjenere som en liste" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Rediger neste rad" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Vis egenskaper" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Ignorer feil" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Ignorer feil" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2419,32 +2439,32 @@ msgstr "" "Antall sekunder et skript har lov til å kjøre ([kbd]0[/kbd] for ingen " "begrensning)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Maks kjøretid" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Lagre som fil" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Filas tegnsett" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Kompresjon" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2452,64 +2472,64 @@ msgstr "Kompresjon" msgid "Put columns names in the first row" msgstr "Sett inn kolonnenavn i første rad" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "Kolonner omsluttet av" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "Kolonner beskyttet med" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Erstatt NULL med" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within columns" msgid "Remove CRLF characters within columns" msgstr "Fjern CRLF tegn i kolonner" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "Kolonner avsluttet med" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Linker avsluttet med" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-versjon" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Databasenavnmal" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Tjenernavnmal" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Tabellnavnmal" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2518,114 +2538,114 @@ msgstr "Tabellnavnmal" msgid "Dump table" msgstr "%s tabell" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Inkluder tabelloverskrift" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Tabelloverskrift" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Fortsettet tabelloverskrift" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Merkelappnøkkel" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relasjoner" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Eksporttype" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Lagre på tjener" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Skriv over eksisterende filer" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Husk filnavnmal" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "Bruk venstre anførselstegn med tabell og kolonnenavn" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL kompatibilitetsmodus" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Opprettelse/Oppdaterings/Kontrolldato" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Bruk forsinkede innsettinger" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Slå av kontroll av fremmednøkler" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Bruk heksadesimal for BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Bruk ignore inserts" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maksimum lengde av opprettet spørring" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Eksporter tabeller" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Inneslutt eksport i en transaksjon" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "Eksport tid i UTC" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Tving sikker tilkobling ved bruk av phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Tving SSL tilkobling" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2633,190 +2653,190 @@ 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Fremmednøkkelrekkefølge" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Fremmednøkkelbegrensning" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Visningsmodus" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Endre visningsmodus" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Endre standard eksportinnstillinger" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV-data" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Redigeringsmodus" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Endre redigeringsmodus" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Eksportinnstillinger" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Endre standard eksportinnstillinger" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Egenskaper" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generer" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importer" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Importinnstillinger" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Endre standard importinnstillinger" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Import / eksport" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Set import and eksport mapper og komprimeringsinnstillinger" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Databasevisningsinnstillinger" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigasjonsramme" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Endre utseendet til navigasjonsrammen" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Tjenere" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Tjenervisningsinnstillinger" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabeller" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Tabellvisningsinnstillinger" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Hovedramme" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document tekst" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Andre hovedinnstillinger" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Innstillinger som ikke passer andre steder" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page name" msgid "Page titles" msgstr "Sidenummer" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Spørringsvindu" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Endre spørringsvinduinnstillinger" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Sikkerhet" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2824,27 +2844,27 @@ msgstr "" "Merk at phpMyAdmin er bare et brukergrensesnitt og dens egenskaper begrenser " "ikke MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Grunnleggende innstillinger" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Autentiseringstype" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Autentiseringstype" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Tjenerinnstillinger" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -2852,17 +2872,17 @@ msgstr "" "Avanserte tjenerinnstillinger, ikke endre disse hvis du ikke vet hva de er " "for" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Legg til tjenertilkoblingsparametre" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration: %s" msgid "Configuration storage" msgstr "Konfigurasjon: %s" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -2877,57 +2897,57 @@ msgstr "" "[a@../Documentation.html#linked-tables]lenkede-tabeller infrastruktur[/a] i " "dokumentasjonen" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "Endringssporing" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" "Sporing av endringer utført i databasen. PMA database må være konfigurert." -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Endre eksportstandarder" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Endre importstandarder" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Endre navigasjonsrammen" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Endre hovedrammen" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL spørringer" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL spørringsboks" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Endre linker vist i SQL spørringsbokser" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL spørringer" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-historie" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2935,49 +2955,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Oppstart" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Endre oppstartssiden" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Faner" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Velg hvordan du ønsker fanene skal fungere" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Bruk tekstfelt" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Endre eksportstandarder" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Advarsel" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -2985,15 +3005,15 @@ msgstr "" "Slå på [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a]-komprimering for import " "og eksportoperasjoner" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Ekstra parametre for iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3001,11 +3021,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:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignorer flere spørringsfeil" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3015,21 +3035,21 @@ 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:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Delvis import: tillat avbrudd" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignorer dupliserte rader" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Erstatt tabell med filen" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3037,96 +3057,96 @@ msgstr "" "Standard format, merk at denne lista avhenger av lokasjon (database, tabell) " "og bare SQL er alltid tilgjengelig" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Importfilformat" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Bruk LOCAL nøkkelord" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Kolonnenavn i første rad" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Ikke importer tomme rader" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Importer valuta ($5.00 til 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importer prosenter som ekte desimaler (12.00% til .12)" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "Antall poster(spørringer) å hoppe over fra start" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Delvis import: hopp over spørringer" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ikke bruk AUTO_INCREMENT for nullverdier" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 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:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Antall innsettingsrader" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Mål for hurtigtilgangsikon" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Vis logo i venstre ramme" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Vis logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Vis tjenervalg øverst i venstre ramme" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Vis tjenerutvalg" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Vis databaser i et tre" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "Streng som skiller databaser i forskellige trenivåer" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Database treskilletegn" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3134,39 +3154,39 @@ msgstr "" "Kun i hurtigversjon; vis databaser i et tre (bestemmes av skilletegnet " "definert nedenfor)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Vis databaser i et tre" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Slå av denne hvis du ønsker å kunne se alle databaser på en gang" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Bruk hurtigversjon" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Maks tabelltredybde" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Streng som skiller tabeller i forskellige trenivåer" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Tabelltreseparator" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3174,38 +3194,38 @@ msgstr "" "Åpne den linkede siden i hovedvinduet ([kbd]main[/kbd]) eller i en ny en " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logo link mål" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Uthev tjener under musmarkøren" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Aktiver utheving" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Bruk mindre grafisk tunge faner" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Hurtigfaner" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, 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 "Maks antall tegn brukt når en SQL spørring er framvist" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3215,11 +3235,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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Slett alle cookies ved utlogging" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3227,11 +3247,11 @@ msgstr "" "Definerer om forrige innlogging skal husker eller ikke i cookie " "autentiseringsmodus" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Husk brukernavn" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3243,52 +3263,52 @@ 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:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Innloggings cookie lagring" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Innloggings cookie gyldighet" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Maks lengde SQL" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "Maks antall databases vist i venstre ramme og databaselista" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Maks antall databaser" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3298,29 +3318,29 @@ msgstr "" "inneholder flere rader vil "Forrige" og "Neste" linker " "bli vist." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Maks antall rader som kan framvises" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Maks antall tabeller vist i tabellista" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Maks antall tabeller" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3328,47 +3348,47 @@ 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Minnetak" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Skjul/Vis venstre meny" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Endre tabellrekkefølge ved" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Bruk bare ikoner, bare tekst eller begge deler" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Ikonnavigasjonsmeny" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 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:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip utbuffring" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3376,42 +3396,42 @@ 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Standard sorteringsrekkefølge" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Bruk vedvarende forbindelser til MySQL databasen" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Vedvarende forbindelser" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Ikoniske tabelloperasjoner" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Ikke tillat BLOB eller BLOB og BINARY kolonner å bli redigert" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "Beskytt binære kolonner" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3424,120 +3444,120 @@ msgstr "" "Slå på hvis du ønsker DB-basert spørringshistorie (trenger pmadb). Hvis " "avslått, vil JS-rutiner vise spørringshistorien (tapt ved lukking av vindu)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Permanent spørringshistorie" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Hvor mange spørringer lagres" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Spørringshistorielengde" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Fanen som vises når et nytt spørringsvindu åpnes" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Standard spørringsvindufane" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Spørringsvindu" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Spørringsvindu" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Spørringsvindu" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 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:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Rekodingsmotor" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Reparer tråder" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Mappe for eksporter kan lagres på tjeneren" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Lagringsmappe" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "La stå tom hvis ikke brukt" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Rekkefølge for vertsautentisering" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "La stå tom for standard" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Vertsautentiseringsregler" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Tillat innlogging uten passord" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Tillat innlogging som root" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 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:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3546,19 +3566,19 @@ 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "SweKey config fil" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Autentiseringsmetode som skal brukes" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Autentiseringstype" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3566,11 +3586,11 @@ msgstr "" "La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/bookmark]bokmerke[/a]" "støtte, anbefalt: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Bokmerketabell" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3578,31 +3598,31 @@ msgstr "" "La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Kolonneinformasjonstabell" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Komprimer tilkoblingen til MySQL tjeneren" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Komprimer tilkobling" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Hvordan koble til tjener, behold tcp hvis usikker" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Tilkoblingstype" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Kontrollbrukerpassord" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3611,30 +3631,30 @@ msgstr "" "informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/controluser]" "wiki[/a]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Kontrollbruker" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Tell tabeller ved visning av databaseliste" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Tell tabeller" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" "La stå tom for ingen Designer støtte, anbefalt: [kbd]designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Designertabell" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3642,58 +3662,58 @@ msgstr "" "Mer informasjon på [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] og [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Slå av bruk av INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Hvilken PHP modul som skal brukes, bruk mysqli hvis støttet" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Bruk PHP modul" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Skjul databaser som matcher regular expression (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Skul databaser" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL spørringshistorietabell" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Vertsnavn hvor MySQL tjeneren kjører" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Tjenervertsnavn" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Logg ut URL" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Forsøk å koble til uten passord" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Koble til uten passord" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3708,29 +3728,29 @@ msgstr "" "Du kan bruke MySQL jokertegn (% and _), escape dem hvis du ønsker å bruke " "dem direkte, f.eks. bruk 'my\\_db' og ikke 'my_db'" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Vis kun opplistede databaser" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "La stå tom om du ikke skal bruke config autentisering" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Passord for config autentisering" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF schema: sidetabell" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3740,21 +3760,21 @@ 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "databasenavn" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Tjenerport" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3762,19 +3782,19 @@ 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Relasjonstabell" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "SQL kommando for å hente liste over databaser" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES kommando" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3782,41 +3802,41 @@ msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/" "a] for et eksempel" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Signon sesjonsnavn" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Tjenersokkel" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Slå på SSL for tilkobling til MySQL tjener" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Bruk SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF schema: tabellkoordinater" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3824,11 +3844,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:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "Visningskolonnetabell" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -3836,11 +3856,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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "Legg til DROP DATABASE" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -3848,11 +3868,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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "Legg til DROP TABLE" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -3860,31 +3880,31 @@ 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "Legg til DROP VIEW" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 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:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "Spørringer som skal spores" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "SQL spørringssporingstabell" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -3892,11 +3912,11 @@ msgstr "" "Om sporingsmekanismen oppretter versjoner for tabeller og visninger " "automatisk." -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "Automatisk opprette versjoner" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -3907,15 +3927,15 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Bruker for config autentisering" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -3923,11 +3943,11 @@ msgstr "" "Slå av hvis du vet at dine pma_* tabeller er oppdaterte. Denne forhindrer " "kompabilitetssjekk og øker ytelsen" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Full kontroll" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -3935,19 +3955,19 @@ msgstr "" "En brukervennlig beskrivelse av denne tjeneren. La stå tom for visning av " "vertsnavn istedet." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Fult navn for denne tjeneren" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 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:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Tillat visning av alle rader" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -3957,35 +3977,35 @@ msgstr "" "autentiseringsmodus siden passordet er hardkodet i konfigurasjonsfila; dette " "begrenser ikke muligheten til å utføre samme kommando direkte" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Vis passordendringsskjema" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Vis opprett database skjema" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Vis åpne tabeller" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Vis funksjonsfelter i rediger/sett inn modus" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Vis funksjonsfelter" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -3993,31 +4013,31 @@ msgstr "" "Vis link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "resultat" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Vis phpinfo() link" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Vis detaljert MySQL tjenerinformasjon" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Vis SQL spørringer" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Vis statistikk" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4025,11 +4045,11 @@ msgstr "" "Hvis verktøytips er påslått og en databasekommentar er definert vil denne " "bytte om på kommentar og det reelle navnet" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Vis databasekommentaren istedet for dens navn" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4041,60 +4061,60 @@ msgstr "" "direktivet, så bare mappen et kalt lik aliaset, selve tabellnavnet forblir " "uendret" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Vis tabellkommentar istedet for dens navn" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Vis tabellkommentarer i verktøytips" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Merk tabeller i bruk og gjør det mulig å vise databaser med låste tabeller" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Ignorer låste tabeller" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Passord" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Brukernavn" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4102,65 +4122,65 @@ msgstr "" "Foreslå et databasenavn i "Opprett Database" skjemaet (hvis mulig) " "eller behold tekstfeltet tomt" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Foreslå nytt databasenavn" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR textarea kolonner" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR textarea rader" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Standard tabellfane" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4172,37 +4192,37 @@ 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:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste over godkjente mellomlager for IP allow/deny" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Opplastingsmappe" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Gjør det mulig å søke i hele databasen" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Bruk databasesøk" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4212,15 +4232,15 @@ msgstr "" "import.lib.php for standarder for hvor mange spørringer en flerutsagn " "spørringer kan inneholde." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Utførlig flere utsagn" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Sjekk for siste versjon" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4228,7 +4248,7 @@ msgstr "" "Slå på [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a]-" "komprimering for import og eksportoperasjoner" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4257,74 +4277,74 @@ msgid "Signon authentication" msgstr "Rekkefølge for vertsautentisering" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV med LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document regneark" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Egendefinert farge" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Databaseeksportinnstillinger" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Data" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV for MS Excel data" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document tekst" @@ -4363,7 +4383,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Hendelser" @@ -4392,8 +4412,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegier" @@ -4405,7 +4425,7 @@ msgstr "Rutiner" msgid "Return type" msgstr "Returtype" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4435,18 +4455,18 @@ msgid "Details..." msgstr "Detaljer..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Endre passord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Intet passord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Gjenta" @@ -4467,8 +4487,8 @@ msgstr "Opprett ny database" msgid "Create" msgstr "Opprett" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Ingen privilegier" @@ -4612,8 +4632,8 @@ msgid "Compression:" msgstr "Kompresjon" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Ingen" @@ -4791,7 +4811,7 @@ msgstr "Sorter etter nøkkel" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4824,8 +4844,8 @@ msgstr "Vis binært innhold" msgid "Show BLOB contents" msgstr "Vis BLOB innhold" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Skjul" @@ -4843,49 +4863,49 @@ msgstr "Utfør lagret spørring" msgid "The row has been deleted" msgstr "Raden er slettet" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Avslutt" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "i spørring" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Viser rader " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Endre" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Forhåndsvisning (med all tekst)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Vis PDF-skjema" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Link ikke funnet" @@ -5362,12 +5382,12 @@ msgid "Data dump options" msgstr "Databasevisningsinnstillinger" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Dataark for tabell" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Tabellstruktur for tabell" @@ -5420,9 +5440,9 @@ msgstr "Tilgjengelige MIME-typer" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Vert" @@ -5568,40 +5588,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Prosedyrer" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funsjoner" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Begrensninger for tabell" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPER FOR TABELLEN" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELASJONER FOR TABELLEN" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Triggere" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Visningsstruktur" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Erstatningsstruktur for visning" @@ -5636,45 +5656,45 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Generert av" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Følgende strukturer har enten blitt opprettet eller endret. Her kan du:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Vis en strukturs innhold ved å klikke på dens navn" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Endre noen av dens innstillinger ved å klikke på den tilhørende " "\"Innstillinger\" link" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Endre dens struktur ved å følge \"Struktur\" linken" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Gå til database" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "innstillinger" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Gå til tabell" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Gå til visning" @@ -5725,7 +5745,7 @@ msgstr "Ugyldig antall kolonner i CSV importen i linje %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabellnavn" @@ -5810,7 +5830,7 @@ msgid "Charset" msgstr "Tegnsett" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Binær " @@ -6099,8 +6119,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Brukernavn" @@ -6119,7 +6139,7 @@ msgid "Variable" msgstr "Variabler" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Verdi" @@ -6140,34 +6160,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Legg til slavereplikasjonsbruker" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Alle brukere" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Bruk tekstfelt" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Alle verter" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Denne vert" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Vis vert tabell" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6415,11 +6435,11 @@ msgstr "Kjør SQL spørring/spørringer mot databasen %s" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" @@ -6451,7 +6471,7 @@ msgstr "Bare se" msgid "Location of the text file" msgstr "Plassering av filen" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "webtjener opplastingskatalog" @@ -6612,21 +6632,21 @@ msgstr "" "Ingen beskrivelse er tilgjengelig for denne transformasjonen.
Spør " "forfatteren hva %s gjør." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Lagringsmotor" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Partisjonsdefinisjon" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "Legg til %s kolonne(r)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "Du må sette inn minst en kolonne." @@ -6838,8 +6858,8 @@ msgstr "innstillinger" msgid "Protocol version" msgstr "Protokollversjon" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Bruker" @@ -6876,7 +6896,7 @@ msgstr "Offisiell phpMyAdmin-hjemmeside" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6888,7 +6908,7 @@ msgstr "" "tjener kjører med denne standardinnstillingen, er åpen for misbruk, og du " "burde fikse dette sikkerhetshullet snarest." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6897,7 +6917,7 @@ msgstr "" "Du har slått på mbstring.func_overload i din PHP konfigurasjon. Denne " "opsjonen er ikke kompatibel med phpMyAdmin og kan medføre skader på data!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6907,7 +6927,7 @@ msgstr "" "flerbyte tegnsett. Uten mbstring-tillegget så kan ikke phpMyAdmin splitte " "strenger korrekt og dette kan medføre uønskede resultater." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6919,12 +6939,12 @@ msgstr "" "gyldighet konfigurert i phpMyAdmin, på grunn av dette så vil din innlogging " "utløpe raskere enn konfigurert i phpMyAdmin." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurasjonsfila trenger nå et hemmelig passordfrase (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6934,7 +6954,7 @@ msgstr "" "fortsatt i din phpMyAdmin mappe. Du bør fjerne den så fort phpMyAdming har " "blitt konfigurert." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6943,7 +6963,7 @@ msgstr "" "Tilleggsfunksjonene for å kunne jobbe med koblede tabeller er deaktivert. " "For å finne ut hvorfor, klikk %sher%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6953,7 +6973,7 @@ msgstr "" "phpMyAdmin funksjonalitet vil mangle. F.eks. navigasjonsrammen vil ikke " "oppdatere seg automatisk." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6962,7 +6982,7 @@ msgstr "" "Din PHP MySQL bibliotekfilversjon %s er forskjellig fra din MySQL " "tjenerversjon %s. Dette kan forårsake uforutsett oppførsel." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7299,113 +7319,113 @@ msgstr "Lagringsmotorer" msgid "View dump (schema) of databases" msgstr "Vis dumpet skjema av databaser" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Inkluder alle privilegier unntatt GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Tillater endring av struktur på eksisterende tabeller." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Tillater endring og sletting av lagrede rutiner." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Tillater oppretting av nye databaser og tabeller." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Tillater oppreting av lagrede rutiner." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Tillater oppretting av nye tabeller." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Tillater oppretting av midlertidige tabeller." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Tillater oppretting av nye visninger." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Tillater sletting av data." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Tillater sletting av databaser og tabeller." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Tillater sletting av tabeller." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Tillater å sette opp hendelser for hendelseskalenderen" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Tillater utføring av lagrede rutiner." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Tillater import og eksport av data til og fra filer." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillater å legge til brukere og privilegier uten å oppfriske " "privilegietabellene." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Tillater oppretting og sletting av indekser." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Tillater å legge til og erstatte data." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Tillater låsing av tabeller for den kjørende tråden." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begrenser antall spørringer brukeren kan sende til tjeneren per time." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7413,61 +7433,61 @@ msgstr "" "Begrenser antall kommandoer som kan endre tabeller eller databaser brukeren " "kan utføre per time." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Tillater visning av prosessene til alle brukere" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "har ingen effekt i denne versjonen av MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -" "tjenere er." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Trenges av replikasjonsslavene." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Tillater lesing av data." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gir adgang til komplett liste over databaser." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillater utføring av SHOW CREATE VIEW spørringer." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Tillater avslutting av tjener." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7477,153 +7497,153 @@ msgstr "" "fleste administrative operasjoner som å sette globale variabler eller " "avslutting av andre brukeres tråder." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Tillater opprettelse og sletting av triggere" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Tillater endring av data." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Ingen privilegier." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Ingen" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "OBS: MySQL privilegiumnavn er på engelsk" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrasjon" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ressursbegrensninger" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Innlogingsinformasjon" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Ikke endre passordet" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "Ingen bruker(e) funnet." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Brukeren %s finnes fra før!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har oppdatert privilegiene til %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har fjernet privilegiene til %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Passordet til %s er endret." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ingen brukere merket for sletting!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Oppfrisker privilegiene" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "De valgte brukerne har blitt slettet." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Rediger privilegier" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Tilbakekall" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Alle" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Brukeroversikt" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Rettighet" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Legg til en ny bruker" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Fjern valgte brukere" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Slett databasene som har det samme navnet som brukerne." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7636,91 +7656,91 @@ msgstr "" "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Legg til privilegier til følgende database" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Legg til privilegier til følgende tabell" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Opprett ny bruker med de samme privilegier og ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... slett den gamle fra brukertabellene." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Brukerdatabase" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "Ingen" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Opprett database med samme navn og gi alle rettigheter" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gi alle privilegier for databasen "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Brukere som har adgang til "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "databasespesifikk" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "jokertegn" @@ -8744,7 +8764,7 @@ msgstr "Kunne ikke koble til kilden" msgid "Could not connect to the target" msgstr "Kunne ikke koble til målet" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9255,12 +9275,12 @@ msgstr "Viser SQL spørring" msgid "Validated SQL" msgstr "Validert SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Navn" @@ -9269,73 +9289,73 @@ msgstr "Navn" msgid "Table %1$s has been altered successfully" msgstr "Tabellen %1$s har blitt endrett" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funksjon" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "" " På grunn av sin lengde,
så vil muligens denne kolonnen ikke være " "redigerbar" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Fjern BLOB lager referanse" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Binær - må ikke redigeres " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Last opp til BLOB lager" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Viser SQL spørring" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "og så" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Returner" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Rediger neste rad" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for " "å bevege deg hvor som helst" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9446,12 +9466,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s eksisterer allerede!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." @@ -9935,11 +9955,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Beskrivelse" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har ikke nok rettigheter til å være her nå!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profilen har blitt oppdatert." @@ -9951,6 +9971,9 @@ msgstr "VIEW navn" msgid "Rename view to" msgstr "Endre tabellens navn" +#~ msgid "Toggle Query Box Visibility" +#~ msgstr "Slå av/på visning av spørreboks" + #, fuzzy #~| msgid "CSV" #~ msgid "SVG" diff --git a/po/nl.po b/po/nl.po index c58e007100..88ed8d6d56 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-08-27 12:34+0200\n" "Last-Translator: Herman van Rink \n" "Language-Team: dutch \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Toon alles" @@ -37,17 +37,20 @@ msgstr "" "Het doelvenster kon niet worden bijgewerkt. Misschien heeft u het venster " "afgesloten of uw browser blokkeert bijwerkingen van uw venster" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Zoeken" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "Zoeken" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -123,7 +126,7 @@ msgid "Database comment: " msgstr "Database commentaar: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Tabelopmerkingen" @@ -134,7 +137,7 @@ msgstr "Tabelopmerkingen" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -149,8 +152,8 @@ msgstr "Kolom namen" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -162,13 +165,13 @@ msgstr "Type" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -187,8 +190,8 @@ msgid "Links to" msgstr "Gelinkt naar" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -204,10 +207,10 @@ msgstr "Commentaar" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nee" @@ -223,10 +226,10 @@ msgstr "Nee" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -253,7 +256,7 @@ msgstr "Selecteer alles" msgid "Unselect All" msgstr "Deselecteer alles" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "De database naam is leeg!" @@ -267,81 +270,81 @@ msgstr "Database %s is hernoemd naar %s" msgid "Database %s has been copied to %s" msgstr "Database %s is gekopieerd naar %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Hernoem database naar" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Commando" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Hernoem database naar" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Database %s is vervallen." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ga naar database" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopieer database naar" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Alleen structuur" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structuur en gegevens" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Alleen data" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE voor het kopiëren" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Voeg %s toe" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT waarde toe" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Voeg beperkingen toe" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Schakel naar de gekopieerde database" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collatie" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -353,24 +356,24 @@ msgstr "" "Extra opties om met tabellen te werken, die gelinkt zijn, zijn " "uitgeschakeld. Om te weten te komen waarom klik %shier%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relationeel schema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -381,33 +384,33 @@ msgstr "Rijen" msgid "Size" msgstr "Grootte" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "in gebruik" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Gecreëerd" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Laatst bijgewerkt" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Laatst gecontroleerd" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -415,7 +418,7 @@ msgstr[0] "%s tabel" msgstr[1] "%s tabellen" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -445,7 +448,7 @@ msgid "Descending" msgstr "Aflopend" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Toon" @@ -466,8 +469,8 @@ msgid "Del" msgstr "Verwijder" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Of" @@ -538,17 +541,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s overeenkomst(en) in de tabel %s" msgstr[1] "%s overeenkomst(en) in de tabel %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Verkennen" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -593,69 +598,30 @@ msgstr "In de tabel(len):" msgid "Inside column:" msgstr "In het veld:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Invoegen" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Structuur" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Verwijderen" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Legen" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaakt" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s is verwijderd" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is vervallen" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Tracking is ingeschakeld." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Tracking is niet actief." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -663,87 +629,111 @@ msgid "" msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "View" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replicatie" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Som" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is de standaard storage engine op deze MySQL-server." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Met geselecteerd:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Selecteer alles" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Deselecteer alles" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exporteer" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Legen" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Verwijderen" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Controleer tabel" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Repareer tabel" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyseer tabel" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Data Woordenboek" @@ -751,13 +741,13 @@ msgstr "Data Woordenboek" msgid "Tracked tables" msgstr "Tabellen met tracker" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -783,8 +773,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Actie" @@ -827,12 +817,12 @@ msgstr "Tabel tracken" msgid "Database Log" msgstr "Database-log" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -915,7 +905,7 @@ msgstr "De boekenlegger (Bookmark) is verwijderd." msgid "Showing bookmark" msgstr "Toon bookmark" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s aangemaakt" @@ -943,7 +933,7 @@ msgstr "" "worden versoepeld." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Terug" @@ -1027,11 +1017,11 @@ msgstr "De machinenaam is leeg!" msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" @@ -1138,113 +1128,121 @@ msgid "Searching" msgstr "Zoeken" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL-query veld" + +#: js/messages.php:85 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL-query veld" # "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen iets anders. -#: js/messages.php:85 +#: js/messages.php:86 #, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr "Rechtstreeks" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Negeer" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Wijzigingen opgeslagen." -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relatie verwijderd" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Vreemde sleutel(FOREIGN KEY) relatie toegevoegd" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Interne relatie toegevoegd" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Fout: Relatie niet toegevoegd." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Fout: relatie bestaat reeds." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Fout bij het opslaan van coördinaten voor de Designer." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Basis relatie opties" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Uitgeschakeld" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Selecteer de primaire sleutel of een unieke sleutel" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kies weer te geven veld" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Genereer wachtwoord" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genereer" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Wijzig wachtwoord" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Klaar" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1252,80 +1250,80 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "Vandaag" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "Januari" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "Februari" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "Maart" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "April" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mei" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "Juni" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "Juli" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "Augustus" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "September" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "Oktober" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "November" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1333,162 +1331,162 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dec" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "Zondag" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "Maandag" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "Dinsdag" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "Woensdag" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "Donderdag" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "Vrijdag" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "Zaterdag" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Zo" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Vr" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Za" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "Zo" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Vr" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "Za" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "Week" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "Uur" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "Minuut" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "Seconde" @@ -1566,9 +1564,9 @@ msgid "Comment" msgstr "Opmerking" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Wijzig" @@ -1591,15 +1589,15 @@ msgstr "" "De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden " "verwijderd." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Databases" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fout" @@ -1849,6 +1847,32 @@ msgstr "Download bestand" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Invoegen" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Structuur" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1918,7 +1942,7 @@ msgstr "Ongeldige serverindex: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1974,7 +1998,7 @@ msgstr "MySQL retourneerde: " msgid "Failed to connect to SQL validator!" msgstr "Er kan geen verbinding worden gemaakt met de server" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Verklaar SQL" @@ -1986,11 +2010,11 @@ msgstr "Uitleg SQL overslaan" msgid "Without PHP Code" msgstr "zonder PHP-Code" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Genereer PHP-Code" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Vernieuw" @@ -1999,7 +2023,7 @@ msgstr "Vernieuw" msgid "Skip Validate SQL" msgstr "SQL-validatie overslaan" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Valideer SQL" @@ -2098,7 +2122,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2122,7 +2146,7 @@ msgid "Select from the web server upload directory %s:" msgstr "web-server upload directory" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" "De directory die u heeft ingesteld om te uploaden kan niet worden bereikt." @@ -2130,7 +2154,7 @@ msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "structuur" @@ -2261,7 +2285,7 @@ msgid "Set value: %s" msgstr "Zet waarde op: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Herstel standaard waarde" @@ -2271,15 +2295,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Opslaan" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Herstel" @@ -2422,112 +2446,108 @@ msgid "Confirm DROP queries" msgstr "Bevestig 'DROP'-queries" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Weergave opties voor databases" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Het tabblad dat wordt getoond na het openen van een database" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Standaard database tabblad" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Het tabblad dat wordt getoond na het openen van een server" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Standaard server tabblad" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Het tabblad dat wordt getoond na het openen van een tabel" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Standaard tabel tabblad" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Toon binaire-inhoud als HEX" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Toon binaire-inhoud als HEX" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Toon een database overzicht als een lijst in plaats van een afrolmenu" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Toon databases als een lijst" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Toon een server overzicht als een lijst in plaats van een afrolmenu" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Toon servers als een lijst" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Bewerk volgende rij" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Toon Opties" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Negeer foutmeldingen" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Negeer foutmeldingen" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2535,32 +2555,32 @@ 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:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Maximale uitvoertijd" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Opslaan als bestand" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Karakertset voor het bestand" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Opmaak" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compressie" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2570,70 +2590,70 @@ msgstr "Compressie" msgid "Put columns names in the first row" msgstr "Plaats veldnamen in de eerste rij" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Velden ingesloten door" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Velden ontweken door" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Vervang NULL door" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Verwijder CRLF tekens uit veld-waarden" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Regels beëindigd door" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Regels beëindigd door" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel editie" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Database naam template" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Server naam template" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Tabel naam template" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2641,117 +2661,117 @@ msgstr "Tabel naam template" msgid "Dump table" msgstr "%s tabel(len)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Voeg tabeltitel toe" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Tabeltitel" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Vervolgde tabeltitel" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Labelsleutel" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relaties" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Export type" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Opslaan op server" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Overschrijf bestaand(e) bestand(en)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Herinner bestandsnaam template" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Gebruik backticks (`) bij tabellen- en veldnamen" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL-compatibiliteits mode" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Creatie/Update/Controleer datum" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Gebruik vertraagde inserts" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "controle op vreemde sleutels uitschakelen" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Gebruik hexadecimaal voor BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Gebruik 'INSERT IGNORE'" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maximale lengte van de gemaakte query" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Exporteer tabellen" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 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:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "Exporteer tijd in UTC" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Dwing een beveiligde verbinding af tijdens het gebruik van phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Beveiligde verbinding (HTTPS) afdwingen" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2759,190 +2779,190 @@ msgstr "" "Sorteer volgorde van elementen in een vreemdesleutel afrolmenu; [kbd]content" "[/kbd] is de gerefereerde data, [kbd]id[/kbd] is de sleutelwaarde" -#: libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Vreemdesleutel afrolmenu sortering" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Vreemdesleutel limiet" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Verkennen-mode" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Aanpassen verkennen-mode" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Aanpassen standaard export opties" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV gegevens" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Wijzig-mode" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Aanpassen wijzig-mode" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Export standaarden" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Aanpassen standaard export opties" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Opties" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Genereer" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importeer" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Import opties" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Aanpassen standaard importeer opties" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Importeer / exporteer" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Aanpassen importeer- en exporteer-directories en compressie-opties" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Weergave opties voor databases" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigatieframe" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Weergave opties voor het navigatieframe" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servers" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Weergave opties voor servers" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabellen" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Weergave opties voor tabellen" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Hoofdframe" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Tekst" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Overige instellingen" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Instellingen die onder geen andere categorie pasten" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Paginanummer:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Query-venster" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Aanpassen query-venster opties" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Beveiliging" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2950,27 +2970,27 @@ msgstr "" "Bedenk dat phpMyAdmin enkel een gebruikersinterface is, en dat zijn functies " "niet direct MySQL beperken. " -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Basis instellingen" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Authenticatie type" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Authenticatie type" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Server configuratie" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -2978,17 +2998,17 @@ msgstr "" "Geavanceerde serverinstellingen, wijzig deze alleen wanneer u de werking " "begrijpt" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Geef de server verbindingsparameters" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration: %s" msgid "Configuration storage" msgstr "Configuratie: %s" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3003,58 +3023,58 @@ msgstr "" "functionaliteit, zie [a@../Documentation.html#linked-tables]linked-tables " "infrastructure[/a] in de documentatie" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "Wijzigingen bijhouden" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" "Bijhouden van wijzigingen in de database. Dit vereist een geconfigureerde " "PMA database." -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Aanpassen export opties" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Aanpassen importeer standaarden" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Aanpassen navigatieframe" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Aanpassen hoofdframe" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-queries" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL-query veld" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Aanpassen van links getoond in de SQL-query vensters" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL-queries" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-geschiedenis" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3062,49 +3082,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Beginpagina" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Aanpassen beginpagina" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Tabbladen" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Aanpassen van tabblad functioneren" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Gebruik tekstveld" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Aanpassen export opties" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Waarschuwing" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3112,15 +3132,15 @@ msgstr "" "Gebruik [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compressie voor import " "en export operaties" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Extra parameters voor iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3128,11 +3148,11 @@ msgstr "" "Indien ingeschakeld gaat phpMyAdmin door met het uitvoeren van queries als " "een query uit een meervoudige opdracht een fout oplevert." -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Negeer foutmeldingen bij meervoudige statements" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3142,21 +3162,21 @@ msgstr "" "tijdslimiet nadert. Dit kan nuttig zijn bij het importeren van grote " "bestanden, maar kan transacties verstoren." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Gedeeltelijke import: onderbreken toestaan" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Negeer dubbele rijen" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Vervang tabelgegevens door het bestand" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3164,98 +3184,98 @@ msgstr "" "Standaard formaat; deze lijst is afhankelijk van de locatie (database, " "tabel), enkel SQL is altijd beschikbaar." -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Formaat van het geïmporteerde bestand" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Gebruik het LOCAL sleutelwoord" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Kolomnamen in eerste rij" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Lege rijen niet importeren" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Valuta importeren ($5.00 naar 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Percentages als decimalen importeren (12.00% naar .12)" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Aantal queries die moeten worden overgeslagen vanaf het begin" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Gedeeltelijke import: queries overslaan" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Gebruik geen AUTO_INCREMENT voor 0-waarden" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Hoeveel rijen gelijktijdig kunnen worden ingevoegd" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Aantal ingevoegde rijen" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Doel van snel-icoon" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Toon logo in linker frame" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Toon logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Toon serverkeuze bovenaan het linker frame" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Toon serverkeuze" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Toon databases als een boom" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "Teken(reeks) dat de boomdiepte aangeeft in databasenamen" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Database boomstructuur scheidingsteken" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3263,39 +3283,39 @@ msgstr "" "Enkel de lichte versie; toon databases als een boomstructuur " "(scheidingsteken zoals hieronder aangegeven)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Toon databases als een boom" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Schaken dit uit wanneer u alle databases in een keer wil zien" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Gebruik lichte versie" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Maximum tabel boomstructuur diepte" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Teken(reeks) dat de boomdiepte aangeeft in tabelnamen" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Tabel boomstructuur scheidingsteken" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3303,27 +3323,27 @@ msgstr "" "Open de pagina in het hoofdvenster ([kbd]main[/kbd]) of in een nieuwe ([kbd]" "new[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logo link bestemming" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Markeer server onder de muispijl" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Markeren inschakelen" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Gebruik grafisch minder intensieve tabbladen" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Lichte tabbladen" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" @@ -3331,11 +3351,11 @@ msgid "" msgstr "" "Maximaal aantal karakters dat wordt gebruikt bij het nonen van een SQL-query." -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3346,11 +3366,11 @@ msgstr "" "meerdere servers wordt gewerkt en dit niet is ingeschakeld kan het snel " "gebeuren dat u vergeet om uit te loggen voor een van de servers." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Delete alle cookies bij het uitloggen" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3358,11 +3378,11 @@ msgstr "" "Geeft aan of de laatst gebruikte gebruikersnaam moet worden herinnerd " "wanneer u geen gebruik maakt van de cookie authenticatie methode" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Herinner gebruikersnaam" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3374,55 +3394,55 @@ msgstr "" "huidige sessie, en vervalt wanneer de browser wordt afgesloten. Dit is aan " "te raden voor niet vertrouwde omgevingen." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Inlog cookie opslag" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Definieer hoelang (in seconden) een inlog cookie geldig blijft" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Inlog cookie geldigheid" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "Maximaal aantal karakters dat wordt gebruikt bij het nonen van een SQL-query." -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Maximaal getoonden SQL lengte" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Het maximale\taantal databases dat wordt getoond in het linker frame en de " "database lijst" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Maximum aantal databases" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3432,29 +3452,29 @@ msgstr "" "set. Indien de resultaat set meer rijen bevat worden "Volgende" en " ""Vorige" links getoond." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Maximum aantal te tonen rijen" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Het maximum aantal tabellen dat wordt getoond in de tabellen lijst" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Maximum aantal tabellen" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3462,47 +3482,47 @@ 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Geheugen limiet" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Toon/Verberg linker menu" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Wijzig het \"Sorteren op/Order by\" van de tabel" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Gebruik enkel iconen, enkel tekst of beide" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Icoon gebruik in navigatie balk" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "gebruik GZip uitvoer buffering voor het versnellen van HTTP verkeer" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip uitvoer buffering" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3514,46 +3534,46 @@ msgstr "" "[kbd]SMART[/kbd] - op aflopende volgorde voor velden van het type TIME, " "DATE, DATETIME en TIMESTAMP, oplopend voor overige velden" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Standaard sorteer volgorde" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Gebruik persistente connecties voor MySQL databases" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Persistente connecties" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Icoon gebruik bij tabel bewerkingen" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Blokkeer het bewerken van 'BLOB' en 'BINARY' velden" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Bescherm binaire velden" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3567,121 +3587,121 @@ msgstr "" "database (vereist pmadb). Indien uitgeschakeld worden JS-routines gebruikt " "die niet bewaard worden bij het sluiten van het venster." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Permanente query geschiedenis" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Hoeveel queries er worden bewaard in de geschiedenis" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Query geschiedenis lengte" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Tabblad dat wordt getoond bij het openen van een nieuw query-venster" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Standaard query-venster tabblad" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Query-venster" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Query-venster" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Query-venster" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" "Selecteer welke functies worden gebruikt om karakterset conversies uit te " "voeren" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Hercoderings engine" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Reparatie threads" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Directory op de server waar exports kunnen worden opgeslagen" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Opslag directory" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Laat dit veld leeg indien u het niet wenst te gebruiken" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Machine authenticatie volgorde" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Laat dit veld leeg om de standaardwaarde te gebruiken" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Host authenticatie regels" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Inloggen zonder wachtwoord toestaan" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Root login toestaan" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3691,19 +3711,19 @@ msgstr "" "hardware authenticatie[/a] (niet binnen de document root directory van uw " "webserver; suggestie: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "SweKey configuratiebestand" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "De te gebruiken authenticatie methode" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Authenticatie type" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3711,11 +3731,11 @@ msgstr "" "Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/bookmark]" "bookmarks[/a] te gebruiken, suggestie: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Bookmark tabel" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3723,31 +3743,31 @@ msgstr "" "Laat dit veld leeg om geen kolom commentaren en mimetypes te ondersteunen, " "suggestie: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Kolom informatie tabel" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Comprimeer verbinding naar de MySQL-server" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Comprimeer verbinding" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Hoe te verbinden met de server, gebruik bij twijfel [kbd]tcp[/kbd]" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Verbindingstype" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Controle gebruiker wachtwoord" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3755,19 +3775,19 @@ 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Controle gebruiker" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Tel het aantal tabellen bij het weergeven van een database lijst" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Tel tabellen" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3775,11 +3795,11 @@ msgstr "" "Laat dit veld leeg om de Designer niet te gebruiken, suggestie: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Designer tabel" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3787,30 +3807,30 @@ msgstr "" "Zie voor meer informatie: [a@http://sf.net/support/tracker.php?aid=1849494]" "PMA bug tracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Maak geen gebruik van INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Welke PHP-extensie er gebruikt zal worden; gebruik mysqli waar mogelijk" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "PHP-extensie" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" "Verberg databases die aan de hier opgegeven reguliere expressie (PCRE) " "voldoen " -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Verberg databases" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3818,31 +3838,31 @@ msgstr "" "Laat dit veld leeg om geen SQL-historie te ondersteunen, suggestie: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL-query historie tabel" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Machinenaam waar de MySQL-server bereikbaar is" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Server machinenaam" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Uitlog URL" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Probeer te verbinden zonder wachtwoord" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Verbind zonder wachtwoord" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3858,31 +3878,31 @@ msgstr "" "ze letterlijk wil gebruiken. Gebruik bijvoorbeeld 'mijn\\_db' en niet " "'mijn_db'" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Toon enkel de opgesomde databases" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 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:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr " authenticatie" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Laat dit veld leeg wanneer PDF-schema wil ondersteunen, suggestie: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF-schema: pagina's tabel" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3893,23 +3913,23 @@ msgstr "" "informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "databasenaam" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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 " "standaard waarde te gebruiken" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Server poort" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3917,19 +3937,19 @@ 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Relatie tabel" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "SQL-commando om de beschikbare databases op te vragen" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES opdracht" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3937,44 +3957,44 @@ msgstr "" "Zie [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authenticatie typen[/" "a] voor een voorbeeld" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Signon sessienaam" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Het socket waarop de MySQL-server luistert, laat dit leeg voor de standaard " "waarde" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "SSL toepassen voor de verbinding naar de MySQL-server" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Gebruik SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF-schema: tabel coördinaten" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -3987,34 +4007,34 @@ msgstr "" "is, laat dit veld leeg om weer te geven velden niet te ondersteunen; " "suggestie: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Toon velden tabel" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" # "statement" hier vertalen is geen goed idee. -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4022,21 +4042,21 @@ msgstr "" "Of een DROP VIEW IF EXISTS statement als de eerste lijn toegevoegd zal " "worden bij het aanmaken van een weergave of niet." -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "Voeg DROP VIEW toe" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Opdrachten" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4044,11 +4064,11 @@ msgstr "" "Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, voorgesteld: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "SQL-query opvolgingstabel" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4056,13 +4076,13 @@ msgstr "" "Of het opvolgsysteem versies voor tabellen en weergaven automatisch aanmaakt " "of niet." -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatische herstelmodus" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -4074,15 +4094,15 @@ msgstr "" "Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, voorgesteld: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr " authenticatie" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4090,11 +4110,11 @@ msgstr "" "Schakel dit uit wanneer u zeker weet dat uw pma_* tabellen up-to-date zijn. " "Dit voorkomt compatibiliteitscontroles en verbeterd daarmee de prestaties." -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Uitgebreide controle" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4102,22 +4122,22 @@ msgstr "" "Een gebruiksvriendelijke naam voor deze server. Laat dit veld leeg om de " "machinenaam te tonen." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Uitgebreide naam voor deze server" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Of er een "Toon alle (rijen)" knop moet worden getoond." -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Toon alle rijen" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4128,35 +4148,35 @@ msgstr "" "configuratiebestand staat opgeslagen; dit beperkt echter niet de " "mogelijkheid om het bijbehorende SQL-commando handmatig uit te voeren." -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Toon formulier voor wachtwoord wijzigen" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Toon formulier om een nieuwe database te creëren" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Toon open tabellen" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Toon de functie velden tijdens het wijzigen/invoegen" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Toon functie velden" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4164,35 +4184,35 @@ msgstr "" "Toon link naar de [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/" "a] uitvoer" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Toon phpinfo() link" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Toon gedetailleerde MySQL-server informatie " -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Geeft aan of SQL-queries die door phpMyAdmin werden gegenereerd moeten " "worden getoond" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Toon SQL-queries" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Maakt het mogelijk om statistieken over o.a. het ruimtegebruik van databases " "en tabellen te tonen" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Toon statistieken" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4200,11 +4220,11 @@ msgstr "" "Indien tooltips zijn ingeschakeld en er een database opmerking aanwezig is, " "wisselt dit de opmerking en de werkelijke naam om " -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Toon database opmerking in plaats van de naam" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4215,61 +4235,61 @@ msgstr "" "$cfg['LeftFrameTableSeparator'] gesplitst. Hierdoor krijgt enkel de map de " "naam van de opmerking, de tabelnaam blijft ongewijzigd" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Toon tabel opmerking in plaats van de naam" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Toon tabel opmerking in een tooltip" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Markeer in gebruik zijnde tabellen, waardoor het mogelijk om een databases " "die deze tabellen bevat te tonen" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Herken vergrendelde tabellen" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Wachtwoord" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Gebruikersnaam" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4277,65 +4297,65 @@ msgstr "" "Doe (indien mogelijk) een suggestie voor de naam van de aan te maken " "database in het hiervoor bestemde formulier, anders blijft het veld leeg. " -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Stel een databasenaam voor" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR textarea kolommen" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR textarea regels" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Standaard tabel tabblad" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4347,38 +4367,38 @@ 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:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "Lijst van vertrouwde proxy servers" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" "Directory op de server waar te importeren bestanden kunnen worden geupload" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Upload directory" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Maak het mogelijk om te zoeken binnen de gehele database" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Gebruik database doorzoeken" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4388,15 +4408,15 @@ msgstr "" "meervoudigeopdracht. Zie libraries/import.lib.php voor de criteria waarop " "wordt gebaseerd hoeveel opdrachten een query mag bevatten." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Uitgebreide uitvoer voor meervoudigeopdrachten" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Controleer de meest recente versie" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4404,7 +4424,7 @@ msgstr "" "Gebruik [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compressie " "voor import en export operaties" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4433,74 +4453,74 @@ msgid "Signon authentication" msgstr "Machine authenticatie volgorde" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV met behulp van LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Werkboek" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Werkboek" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Customization" msgid "Custom" msgstr "Aanpassingen" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Database export opties" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Data" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV voor MS Excel data" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Tekst" @@ -4547,7 +4567,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Gebeurtenissen" @@ -4576,8 +4596,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Rechten" @@ -4589,7 +4609,7 @@ msgstr "Routines" msgid "Return type" msgstr "Retour type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4622,18 +4642,18 @@ msgid "Details..." msgstr "Details..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Wijzig wachtwoord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Geen wachtwoord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Type opnieuw" @@ -4655,8 +4675,8 @@ msgstr "Nieuwe database aanmaken" msgid "Create" msgstr "Aanmaken" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Geen rechten" @@ -4804,8 +4824,8 @@ msgid "Compression:" msgstr "Compressie" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Geen" @@ -4985,7 +5005,7 @@ msgstr "Sorteren op sleutel" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5020,8 +5040,8 @@ msgstr "Toon binaire inhoud" msgid "Show BLOB contents" msgstr "Toon BLOB inhoud" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Verberg" @@ -5039,49 +5059,49 @@ msgstr "Voor de gebookmarkte query uit" msgid "The row has been deleted" msgstr "De rij is verwijderd" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "stop proces" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Toon Records" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Query duurde %01.4f sec" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Veranderen" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Query resultaat bewerkingen" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Afdrukken (met volledige teksten)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Geef het PDF-schema weer" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Link niet gevonden" @@ -5565,12 +5585,12 @@ msgid "Data dump options" msgstr "Weergave opties voor databases" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Gegevens worden uitgevoerd voor tabel" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Tabelstructuur voor tabel" @@ -5627,9 +5647,9 @@ msgstr "Beschikbare MIME-types" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Machine" @@ -5775,40 +5795,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedures" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Functies" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Beperkingen voor gedumpte tabellen" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Beperkingen voor tabel" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES VOOR TABEL" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIES VOOR TABEL" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Triggers" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Structuur voor de view" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Stand-in structuur voor view" @@ -5843,42 +5863,42 @@ msgstr "SQL-resultaat" msgid "Generated by" msgstr "Gegenereerd door" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultaat set terug (0 rijen)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "De inhoud van een structuur bekijken door er op te klikken" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Een instelling veranderen door op \"Opties\" te klikken" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Klik op de \"Structuur\"-koppeling om de structuur aan te passen" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Ga naar database" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "instellingen" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Ga naar tabel" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Ga naar view" @@ -5930,7 +5950,7 @@ msgstr "Verkeerd aantal velden in CSV invoer op regel %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabelnaam" @@ -6018,7 +6038,7 @@ msgid "Charset" msgstr "Karakterset" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Binair " @@ -6312,8 +6332,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Gebruikersnaam" @@ -6332,7 +6352,7 @@ msgid "Variable" msgstr "Variabelen" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Waarde" @@ -6353,34 +6373,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Voeg slave replicatie gebruiker toe" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Een willekeurige gebruiker" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Gebruik tekstveld" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Een willekeurige machine" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "lokaal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Deze machine" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Gebruik Host Tabel" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6635,11 +6655,11 @@ msgstr "Draai SQL query/queries op database %s" msgid "Columns" msgstr "Kolom namen" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Sla deze SQL-query op" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Geef elke gebruiker toegang tot deze bookmark" @@ -6671,7 +6691,7 @@ msgstr "Alleen bekijken" msgid "Location of the text file" msgstr "Locatie van het tekstbestand" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "web-server upload directory" @@ -6838,22 +6858,22 @@ msgstr "" "Geen beschrijving beschikbaar voor deze transformatie.
Raadpleeg de " "maker over wat %s doet." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Opslag Engine" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "PARTITION definitie" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Kolom(men) toevoegen" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7112,8 +7132,8 @@ msgstr "instellingen" msgid "Protocol version" msgstr "Protocolversie" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Gebruiker" @@ -7150,7 +7170,7 @@ msgstr "Officiële phpMyAdmin Website" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7162,7 +7182,7 @@ msgstr "" "met deze standaard waardes, en is open voor ongewilde toegang. Het wordt dus " "aangeraden dit op te lossen." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7172,7 +7192,7 @@ msgstr "" "optie is incompatibel met phpMyAdmin en kan ervoor zorgen dat sommige data " "corrupt raakt!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7182,7 +7202,7 @@ msgstr "" "karakterset te gebruiken. Zonder de mbstring extensie kan phpMyAdmin strings " "niet correct splitsen, wat tot onverwachte resultaten kan leiden." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7194,13 +7214,13 @@ msgstr "" "ingestelde cookie geldigheid in phpMyAdmin. Hierdoor verloopt uw sessie " "eerder dan in phpMyAdmin is ingesteld." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Het configuratiebestand heeft nu een geheime wachtwoordzin nodig " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7210,7 +7230,7 @@ msgstr "" "nog in de phpMyAdmin directory. Het kan beter worden verwijderd zodra " "phpMyAdmin is geconfigureerd." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7219,7 +7239,7 @@ msgstr "" "Extra opties om met tabellen te werken, die gelinkt zijn, zijn " "uitgeschakeld. Om te weten te komen waarom klik %shier%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7230,7 +7250,7 @@ msgstr "" "beschikbaar zijn. Zo zal bijvoorbeeld het navigatieframe zich niet " "automatisch vernieuwen." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7239,7 +7259,7 @@ msgstr "" "Uw PHP MySQL bibliotheek versie %s verschilt van uw MySQL-server versie %s. " "Dit kan onvoorspelbaar gedrag veroorzaken." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7588,117 +7608,117 @@ msgstr "Opslag Engines" msgid "View dump (schema) of databases" msgstr "Bekijk dump (schema) van de databases" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Bevat alle privileges behalve GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Maakt het mogelijk om stored routines te bewerken en te verwijderen." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Maakt het mogelijk om nieuwe databases en tabellen te maken." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Maakt het mogelijk om stored routines aan te maken." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Maakt het mogelijk nieuwe tabellen te maken." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Maakt het mogelijk om tijdelijke tabellen te maken." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Maakt het mogelijk om nieuwe views te maken." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Maakt het mogelijk om data te verwijderen." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Maakt het mogelijk om databases en tabellen te verwijderen." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Maakt het mogelijk tabellen te verwijderen." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Maakt het mogelijk om stored routines uit te voeren." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Maakt het mogelijk om data te importeren en te exporteren van en naar " "bestanden." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Maakt het mogelijk dat gebruikers en privileges toe te voegen zonder de " "privilegestabel opnieuw op te vragen." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Maakt het mogelijk om indexen te creëren en te verwijderen." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Maakt het mogelijk om data in te voegen en te vervangen." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limiteert het aantal nieuwe connecties die een gebruiker per uur mag openen." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limiteert het aantal queries dat een gebruiker mag versturen per uur." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7706,64 +7726,64 @@ msgstr "" "Limiteert het aantal commando's, welke een database of tabel veranderen, die " "een gebruiker per uur mag uitvoeren." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limiteert het aantal gelijktijdige verbindingen dat de gebruiker open kan " "hebben." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Maakt het mogelijk om processen van alle gebruikers te zien" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Heeft geen effect in deze MySQL versie." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache " "van de server leeg te maken." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Geeft het recht aan de gebruiker om te vragen waar de 'slaves' / 'masters' " "zijn." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nodig om 'slaves' te repliceren." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Maakt het lezen van data mogelijk." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Geeft toegang tot de complete lijst van databases." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Maakt het mogelijk om SHOW CREATE VIEW queries uit te voeren." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Maakt het mogelijk om de server te stoppen." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7774,157 +7794,157 @@ msgstr "" "opties zoals het instellen van globale variabelen of het stoppen van threads " "van andere gebruikers." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Maakt het mogelijk om triggers maken en te verwijderen" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Maakt het mogelijk data aan te passen." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Geen privileges." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Geen" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Tabel-specifieke privileges" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Aantekening: de namen van de MySQL rechten zijn uitgedrukt in het Engels " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globale privileges" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Database-specifieke privileges" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administratie" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resource-beperkingen" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Opmerking: Het instellen van deze waarden op 0 (nul) verwijdert de limiet." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Inloginformatie" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Wijzig het wachtwoord niet" # Enkelvoud. -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "Geen gebruiker gevonden." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "De gebruiker %s bestaat al!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "U heeft de rechten aangepast voor %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "U heeft de rechten ingetrokken voor %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Het wachtwoord voor %s is succesvol veranderd." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Verwijderen van %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Geen gebruikers geselecteerd om te verwijderen!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Bezig de privileges te verversen" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "De geselecteerde gebruikers zijn met succes verwijderd." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "De privileges zijn succesvol vernieuwd" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Wijzig rechten" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Ongedaan maken" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Elke" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Gebruikers Overzicht" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Toekennen" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Voeg een nieuwe gebruiker toe" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Verwijder de geselecteerde gebruikers" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Trek alle actieve privileges in van alle gebruikers en verwijder deze daarna." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7938,52 +7958,52 @@ msgstr "" "geval zijn dan moet men %sde privilege tabel vernieuwen%s voordat men verder " "gaat." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" "De geselecteerde gebruiker werd niet aangetroffen in de privileges tabel" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Kolom-specifieke privileges" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Voeg privileges toe aan de volgende database" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Wildcards _ en % moeten worden ge-escaped met een \\ om ze letterlijk te " "gebruiken" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Voeg privileges toe aan de volgende tabel" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Wijzig de Inlog Informatie / Kopieer gebruiker" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Maak een nieuwe gebruiker aan met dezelfde privileges en ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... behoud de oude." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... verwijder de oude van de user tabellen." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... herstel alle actieve privileges van de oude en verwijder deze daarna." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7991,44 +8011,44 @@ msgstr "" " ... verwijder de oude van de gebruikerstabellen en vernieuw de privileges " "achteraf." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Database voor gebruiker" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Geen" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Maak een database met dezelfde naam en geef alle rechten hierop" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Geef alle rechten op de wildcard naam (gebruikersnaam\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Geef alle rechten op de database "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Gebruikers die toegang hebben tot "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globaal" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "database-specifiek" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "jokerteken" @@ -9074,7 +9094,7 @@ msgstr "Verbinding naar de brondatabase is mislukt" msgid "Could not connect to the target" msgstr "Verbinding naar de bestemmingsdatabase is mislukt" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9599,12 +9619,12 @@ msgstr "Toont SQL-query" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de index(en) van de tabel `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Label" @@ -9613,74 +9633,74 @@ msgstr "Label" msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s is bijgewerkt" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Bekijk vreemde waardes" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Functie" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Vanwege z'n lengte,
is dit veld misschien niet te wijzigen " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Verwijder BLOB Bewaarplaats Referentie" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Binair - niet aanpassen " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Upload naar BLOB bewaarplaats" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Voeg toe als nieuwe rij" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Voeg toe als nieuwe rij en negeer foutmeldingen" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Toont SQL-query" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "en dan" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Terug" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Voeg een nieuw record toe" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Bewerk volgende rij" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gebruik de TAB-knop om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9793,12 +9813,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s bestaat reeds!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Tabel %1$s is aangemaakt." @@ -10301,11 +10321,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Beschrijving" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "U heeft niet genoeg rechten om hier te zijn!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Het profiel is aangepast." diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 366c8cd268..5a9fc0e324 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "" @@ -38,17 +38,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "" @@ -133,7 +136,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -146,8 +149,8 @@ msgstr "" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -159,13 +162,13 @@ msgstr "" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -184,8 +187,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -201,10 +204,10 @@ msgstr "" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "" @@ -220,10 +223,10 @@ msgstr "" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -250,7 +253,7 @@ msgstr "" msgid "Unselect All" msgstr "" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "" @@ -264,99 +267,99 @@ msgstr "" msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "" -#: db_operations.php:409 +#: db_operations.php:412 #, possible-php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, possible-php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "" -#: db_operations.php:516 +#: db_operations.php:519 #, possible-php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -367,33 +370,33 @@ msgstr "" msgid "Size" msgstr "" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, possible-php-format msgid "%s table" msgid_plural "%s tables" @@ -401,7 +404,7 @@ msgstr[0] "" msgstr[1] "" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -431,7 +434,7 @@ msgid "Descending" msgstr "" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "" @@ -452,8 +455,8 @@ msgid "Del" msgstr "" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "" @@ -521,17 +524,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -573,156 +578,141 @@ msgstr "" msgid "Inside column:" msgstr "" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, possible-php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, possible-php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, possible-php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, possible-php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "" @@ -730,13 +720,13 @@ msgstr "" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -762,8 +752,8 @@ msgstr "" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "" @@ -806,12 +796,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, possible-php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -880,7 +870,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, possible-php-format msgid "Bookmark %s created" msgstr "" @@ -903,7 +893,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "" @@ -979,11 +969,11 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "" @@ -1064,100 +1054,104 @@ msgid "Searching" msgstr "" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" +msgid "Hide query box" msgstr "" #: js/messages.php:85 +msgid "Show query box" +msgstr "" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1165,231 +1159,231 @@ msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "" @@ -1461,9 +1455,9 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "" @@ -1484,15 +1478,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -1728,6 +1722,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "" @@ -1783,7 +1803,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "" @@ -1837,7 +1857,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "" @@ -1849,11 +1869,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1862,7 +1882,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "" @@ -1960,7 +1980,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -1983,14 +2003,14 @@ msgid "Select from the web server upload directory %s:" msgstr "" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2110,7 +2130,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2120,15 +2140,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "" @@ -2249,131 +2269,127 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 msgid "Display errors" msgstr "" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2381,438 +2397,438 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 msgid "Open Document" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 msgid "SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2820,269 +2836,269 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 msgid "Display table filter" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3090,414 +3106,414 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3506,287 +3522,287 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3794,117 +3810,117 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -3912,58 +3928,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -3984,72 +4000,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4088,7 +4104,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4117,8 +4133,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "" @@ -4130,7 +4146,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4159,18 +4175,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "" @@ -4191,8 +4207,8 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -4306,8 +4322,8 @@ msgid "Compression:" msgstr "" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "" @@ -4451,7 +4467,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4484,8 +4500,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4503,47 +4519,47 @@ msgstr "" msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, possible-php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 msgid "Display chart" msgstr "" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "" @@ -4950,12 +4966,12 @@ msgid "Data dump options" msgstr "" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "" @@ -4998,9 +5014,9 @@ msgstr "" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "" @@ -5139,40 +5155,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5205,42 +5221,42 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5289,7 +5305,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5364,7 +5380,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "" @@ -5646,8 +5662,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "" @@ -5666,7 +5682,7 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "" @@ -5685,34 +5701,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -5946,11 +5962,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -5982,7 +5998,7 @@ msgstr "" msgid "Location of the text file" msgstr "" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "" @@ -6114,21 +6130,21 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, possible-php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "" @@ -6288,8 +6304,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "" @@ -6326,7 +6342,7 @@ msgstr "" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6334,21 +6350,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6356,39 +6372,39 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, possible-php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, possible-php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, possible-php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6706,321 +6722,321 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "" -#: server_privileges.php:881 +#: server_privileges.php:880 #, possible-php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, possible-php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, possible-php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, possible-php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, possible-php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, possible-php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7029,89 +7045,89 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, possible-php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, possible-php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -7993,7 +8009,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, possible-php-format msgid "'%s' database does not exist." @@ -8395,12 +8411,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:817 +#: sql.php:820 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "" @@ -8409,69 +8425,69 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, possible-php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8567,12 +8583,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, possible-php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, possible-php-format msgid "Table %1$s has been created." msgstr "" @@ -9042,11 +9058,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "" diff --git a/po/pl.po b/po/pl.po index d44e8d6c0a..71f73cdb74 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" -"PO-Revision-Date: 2010-07-22 02:29+0200\n" -"Last-Translator: Marc Delisle \n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" +"PO-Revision-Date: 2010-09-27 23:53+0200\n" +"Last-Translator: Jarosław Głowacki \n" "Language-Team: polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -13,10 +13,10 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.0.1\n" +"X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Pokaż wszystko" @@ -39,17 +39,20 @@ msgstr "" "rodzic zostało zamknięte lub przeglądarka, uwzględniając ustawienia " "bezpieczeństwa, blokuje aktualizacje pomiędzy oknami" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Szukaj" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "Szukaj" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -125,7 +128,7 @@ msgid "Database comment: " msgstr "Komentarz bazy danych: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Komentarze tabeli" @@ -136,7 +139,7 @@ msgstr "Komentarze tabeli" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -151,8 +154,8 @@ msgstr "Nazwy kolumn" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -164,13 +167,13 @@ msgstr "Typ" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -189,8 +192,8 @@ msgid "Links to" msgstr "Łącze" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -206,10 +209,10 @@ msgstr "Komentarze" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nie" @@ -225,10 +228,10 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgstr "Zaznacz wszystkie" msgid "Unselect All" msgstr "Odznacz wszystkie" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Nazwa bazy danych jest pusta!" @@ -269,80 +272,77 @@ msgstr "Baza danych %s ma nazwę zmienioną na %s" msgid "Database %s has been copied to %s" msgstr "Baza danych %s została skopiowana do %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Polecenie" -#: db_operations.php:397 -#, fuzzy -#| msgid "Rename database to" +#: db_operations.php:400 msgid "Remove database" -msgstr "Zmień nazwę bazy danych na" +msgstr "Usuń bazę danych" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Baza danych %s została usunięta." -#: db_operations.php:414 -#, fuzzy +#: db_operations.php:417 msgid "Drop the database (DROP)" -msgstr "Brak baz danych" +msgstr "Usuń bazę danych (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopiuj bazę danych do" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tylko struktura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura i dane" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Tylko dane" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE przed skopiowaniem" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartości AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj ograniczenia" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Przełącz do skopiowanej bazy danych" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Metoda porównywania napisów" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,61 +354,61 @@ msgstr "" "Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby " "dowiedzieć się, dlaczego - kliknij %stutaj%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Schemat relacyjny" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 msgid "Rows" -msgstr "Rekordów" +msgstr "Rekordy" #: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Rozmiar" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "w użyciu" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Utworzenie" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Ostatnia aktualizacja" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Ostatnie sprawdzenie" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -417,7 +417,7 @@ msgstr[0] "%s tabel(a)" msgstr[1] "%s tabel(a)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -447,7 +447,7 @@ msgid "Descending" msgstr "Malejąco" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Pokaż" @@ -468,8 +468,8 @@ msgid "Del" msgstr "Usuń" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "lub" @@ -542,17 +542,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s trafień wewnątrz tabeli %s" msgstr[1] "%s trafień wewnątrz tabeli %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Przeglądaj" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -597,69 +599,30 @@ msgstr "Wewnątrz tabel(i):" msgid "Inside column:" msgstr "Wewnątrz pola:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Dodaj" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Usuń" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Wyczyść" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s została opróżniona" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Perspektywa %s została usunięta" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s została usunięta" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Monitorowanie jest aktywne." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Monitorowanie nie jest aktywne." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -668,87 +631,111 @@ msgstr "" "Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %" "sdocumentation%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Perspektywa" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikacja" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Suma" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s to domyślny mechanizm składowania tego serwera MySQL." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Zaznaczone:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Zaznacz wszystkie" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Odznacz wszystkie" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Zaznacz nieoptymalne" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Eksport" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Widok do druku" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Wyczyść" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Usuń" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Sprawdź tabelę" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optymalizuj tabelę" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Napraw tabelę" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizuj tabelę" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Słownik danych" @@ -756,13 +743,13 @@ msgstr "Słownik danych" msgid "Tracked tables" msgstr "Monitorowane tabele" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -788,8 +775,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Działanie" @@ -832,12 +819,12 @@ msgstr "Monitoruj tabelę" msgid "Database Log" msgstr "Log bazy danych" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -915,7 +902,7 @@ msgstr "Zapamiętane zapytanie SQL zostało usunięte." msgid "Showing bookmark" msgstr "Pokaz zapamiętanego zapytania" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Zapytanie %s zostało zapamiętane" @@ -943,7 +930,7 @@ msgstr "" "importu bez zwiększenia limitów czasowych PHP." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Powrót" @@ -1025,11 +1012,11 @@ msgstr "Brak nazwy hosta!" msgid "The user name is empty!" msgstr "Brak nazwy użytkownika!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Puste hasło!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" @@ -1135,114 +1122,122 @@ msgid "Searching" msgstr "Szukaj" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Okno zapytania SQL" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Okno zapytania SQL" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Mechanizmy" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modyfikacje zostały zapamiętane" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Usunięto powiązanie" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Relacja FOREIGN KEY została dodana." -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Dodano wewnętrzne powiązanie" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Błąd: nie dodano związku." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Błąd: związek już istnieje." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Błąd podczas zapisywania współrzędnych dla Projektanta." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Ogólne funkcje relacyjne" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "wyłączone" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Wybierz klucz odwołujący" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Wybierz klucz zewnętrzny" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Należy wybrać klucz główny lub klucz jednoznaczny" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Wybierz wyświetlane pole" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generuj hasło" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generuj" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Zmień hasło" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Przekazanie darowizny" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Poprzednie" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1250,96 +1245,96 @@ msgid "Next" msgstr "Następne" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Sumarycznie" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binarne " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kwi" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Maj" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Cze" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Sie" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Paź" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1347,178 +1342,178 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Gru" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Nie" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Wto" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pią" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Nie" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Wto" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Śro" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Czw" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pią" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sob" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "w użyciu" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1596,9 +1591,9 @@ msgid "Comment" msgstr "Komentarz" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Edytuj" @@ -1621,15 +1616,15 @@ msgstr "" "Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać " "usunięty." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Bazy danych" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Błąd" @@ -1878,6 +1873,32 @@ msgstr "Ściągnij plik" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Dodaj" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktura" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1948,7 +1969,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Serwer" @@ -2006,7 +2027,7 @@ msgstr "MySQL zwrócił komunikat: " msgid "Failed to connect to SQL validator!" msgstr "Nie można połączyć się z serwerem MySQL" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Wyjaśnij SQL" @@ -2018,11 +2039,11 @@ msgstr "Pomiń wyjaśnienie SQL" msgid "Without PHP Code" msgstr "bez kodu PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Utwórz kod PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Odśwież" @@ -2031,7 +2052,7 @@ msgstr "Odśwież" msgid "Skip Validate SQL" msgstr "Pomiń sprawdzanie poprawności SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Sprawdź poprawność SQL" @@ -2131,7 +2152,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2155,14 +2176,14 @@ msgid "Select from the web server upload directory %s:" msgstr "katalog serwera WWW dla uploadu" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Katalog ustalony dla uploadu jest nieosiągalny" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "struktura" @@ -2293,7 +2314,7 @@ msgid "Set value: %s" msgstr "Ustaw wartość: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Przywróć wartość domyślną" @@ -2303,15 +2324,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Zachowaj" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Resetuj" @@ -2443,109 +2464,105 @@ msgid "Confirm DROP queries" msgstr "Potwierdzanie zapytań DROP" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Opcje eksportu bazy danych" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Zakładka, która jest wyświetlana po wejściu do bazy danych" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Domyślna zakładka bazy danych" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Zakładka, która jest wyświetlana po wejściu w szczegóły serwer" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Domyślna zakładka serwera" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Zakładka, która jest wyświetlana po wejściu w szczegóły tabeli" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Domyślna zakładka tabeli" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Pokaż zawartość binarną w postaci szesnastkowej" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Pokaż wykaz baz danych jako listę zamiast listy rozwijanej" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Wyświetl bazy danych w postaci listy" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Wyświetl serwery w postaci listy" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Edytuj następny rekord" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Funkcje wyświetlania" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Ignoruj błędy" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Ignoruj błędy" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2553,32 +2570,32 @@ msgstr "" "Jak długo (w sekundach) może trwać wykonywanie skryptu ([kbd]0[/kbd] oznacza " "brak limitu)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Maksymalny czas wykonania" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Zapisz jako plik" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Kodowanie pliku" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Typ kompresji" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2588,66 +2605,66 @@ msgstr "Typ kompresji" msgid "Put columns names in the first row" msgstr "Umieść nazwy pól w pierwszym rekordzie" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Pola zawarte w" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Pola poprzedzone przez" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Zamiana NULL na" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linie zakończone przez" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Linie zakończone przez" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "Wydanie Excela" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Nazwa schematu bazy danych" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Nazwa schematu serwera" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Nazwa schematu tabeli" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2655,115 +2672,115 @@ msgstr "Nazwa schematu tabeli" msgid "Dump table" msgstr "%s tabel(a)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Załącz nagłówek tabeli" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Nagłówek tabeli" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Kontynuacja nagłówka tabeli" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Etykieta klucza" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Typ MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relacje" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Rodzaj eksportu" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Zapisz na serwerze" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Nadpisuj istniejące pliki" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Zapamiętaj nazwę pliku schematu" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Użyj cudzysłowów z nazwami tabel i pól" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Tryb zgodności SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Daty utworzenia/aktualizacji/sprawdzenia" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Użyj opóźnionych dodań" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Wyłącz sprawdzanie kluczy zewnętrznych" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Użyj liczb szesnastkowych dla typu BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Użyj ignorowanych dodań" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maksymalna długość utworzonego zapytania" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 msgid "Export type" msgstr "Rodzaj eksportu" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Obejmij eksport transakcją" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Domyślne opcje eksportu" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Wymusza bezpiecznie połącznie podczas używania phpMyAdmina" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Wymuszaj połączenie SSL" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2771,189 +2788,189 @@ 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Porządek sortowania kluczy obcych" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "Jeśli jest mniej pozycji zostanie użyta lista wyboru" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Limit kluczy obcych" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Tryb przeglądania" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Personalizuj tryb przeglądania" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Indywidualizacja opcji eksportu" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Tryb edycji" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Personalizuj tryb edycji" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Domyślne opcje eksportu" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Dostosuj domyślne opcje eksportu" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funkcje" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generuj" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Domyślne opcje importu" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Dostosuj domyślne opcje importu" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Import / eksport" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Ustaw katalogi importu i eksportu oraz opcje kompresji" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Opcje wyświetlania baz danych" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Ramka nawigacji" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Dostosuj wygląd ramki nawigacji" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Serwery" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Opcje wyświetlania serwerów" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabele" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Opcje wyświetlania tabel" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Główna ramka" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Tekst w formacie Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Inne kluczowe ustawienia" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Inne ustawienia" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Numer strony:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Okienko zapytania" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Dostosuj opcje okna zapytań" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Bezpieczeństwo" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2961,27 +2978,27 @@ msgstr "" "Proszę zauważyć, że phpMyAdmin jest po prostu interfejsem użytkownika i jego " "funkcje nie ograniczają MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Ustawienia podstawowe" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Konfiguracja serwera" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -2989,73 +3006,73 @@ msgstr "" "Zaawansowane ustawienia serwera; nie zmieniaj ich jeżeli nie jesteś pewien " "ich znaczenia" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Podaj parametry dla połączenia z serwerem" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration" msgid "Configuration storage" msgstr "Konfiguracja" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Indywidualizacja opcji eksportu" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Indywidualizacja opcji importu" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Indywidualizacja ramki nawigacyjnej" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Indywidualizacja głównej ramkj" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Zapytania SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "Okno zapytania SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Dostosuj odnośniki pokazywane w ramkach zapytań SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "Zapytania SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Historia SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3063,49 +3080,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Strona startowa" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Personalizuj stronę startową" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Zakładki" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Wybierz sposób działania zakładek" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Użyj pola tekstowego" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Indywidualizacja opcji eksportu" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Tekst Texy!" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Ostrzeżenie" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3113,15 +3130,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:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Dodatkowe parametry dla iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3130,11 +3147,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:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignoruj błędy w ciągu instrukcji" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3144,21 +3161,21 @@ 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:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Import częściowy: pozwalaj przerwać" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignoruj zdublowane rekordy" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Zamiana danych tabeli z plikiem" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3166,94 +3183,94 @@ 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Format importowanych plików" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Użyj słowa kluczowego LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "W pierwszym rekordzie znajdują się nazwy kolumn" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Nie importuj pustych rekordów" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importuj walutę (zamienia $5.00 na 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 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:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Liczba rekordów (zapytań), które należy z początku pominąć" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Import częściowy: pomiń zapytania" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nie używaj AUTO_INCREMENT dla wartości zerowych" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Pokazuje ile rekordów może zostać wstawionych w jednym czasie" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Liczba wstawianych rekordów" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Cel ikony szybkiej akcji" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Pokaż logo w lewej ramce" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Pokaż logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Wyświetla wybór serwera - w lewej ramce, na górze" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Wyświetlaj wybór serwerów" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Wyświetl komentarze dla kolumn" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" "Łańcuch znaków, który oddziela bazy danych na różne poziomy zagłębienia" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Separator struktury drzewa bazy danych" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3261,39 +3278,39 @@ msgstr "" "Tylko wersja uproszczona. Wyświetlaj bazy danych w postaci drzewa (określone " "przez separator zdefiniowany poniżej)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Wyświetla bazy danych w postaci drzewa" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Wyłącz, jeśli chcesz widzieć wszystkie bazy danych jednocześnie" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Używaj uproszczonej wersji" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Maksymalny poziom zagłębienia tabeli" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Łańcuch znaków, który separuje tabele na różnych poziomach zagłębienia" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Separator poziomów tabeli" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Odnośnik URL do logo" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3301,38 +3318,38 @@ msgstr "" "Otwieraj stronę w tym samym oknie ([kbd]main[/kbd]) lub w nowym oknie ([kbd]" "new[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Cel odnośnika logo" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Podświetla serwer po najechaniu kursorem myszy" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Włącz podświetlanie" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Używaj mniej grafiki w zakładkach" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Uproszczone zakładki" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, 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 "Maksymalna liczba pokazywanych znaków zapytania SQL" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3343,11 +3360,11 @@ msgstr "" "że gdy korzysta się z więcej niż jednego serwera, łatwo zapomnieć wylogować " "się z pozostałych." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Usuń wszystkie ciasteczka przy wylogowaniu" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3355,11 +3372,11 @@ msgstr "" "Określa czy przy uwierzytelnianiu przez ciasteczka ma być przypominana " "poprzednia nazwa użytkownika" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Przypominaj nazwę użytkownika" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3372,54 +3389,54 @@ msgstr "" "przeglądarki. Takie rozwiązanie jest preferowane w środowisku niegodnym " "zaufania." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Przechowywania ciasteczka logowania" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Jak długo (w sekundach) ważny będzie ciasteczko logowania" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Ważność ciasteczka logowania" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Maksymalna liczba pokazywanych znaków zapytania SQL" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Maksymalna pokazywana długość SQL" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Maksymalna liczba baz danych pokazywanych w lewej ramce i na liście baz " "danych" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Maksimum baz danych" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3429,29 +3446,29 @@ msgstr "" "zestaw składa się z większej ilości wierszy, zostanie pokazany link " "Poprzednie/Następne." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Maksymalna liczba rekordów do wyświetlenia" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Maksymalna liczba tabel pokazywanych na liście tabel" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Maksimum tabel" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3459,206 +3476,206 @@ msgstr "" "Ile pamięci może zaalokować skrypt, np. [kbd]32M[/kbd] ([kbd]0[/kbd] oznacza " "brak limitu)" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Limit pamięci" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Pokaż/ukryj lewe menu" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Sortowanie tabeli wg" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Używaj tylko ikon, tylko tekstu lub ikon i tekstu" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Wygląd interfejsu paska nawigacji" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Czy kompresować GZip-em wyjście w celu zwiększenia szybkości transferów HTTP" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "Kompresja wyjścia GZip" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Domyslny porządek sortowania" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Czy użyć trwałych połączeń do baz danych MySQL" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Trwałe połączenia" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Wygląd interfejsu do operacji na tabeli" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Permanentna historia zapytań" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Ile zapytań ma być przechowywanych w historii" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Długość historii zapytań" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Zakładka wyświetlana po otwarciu nowego okna zapytań" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Domyślna zakładka okna zapytań" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Okienko zapytania" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Okienko zapytania" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Okienko zapytania" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "Które funckje będą użyte do konwersji kodowania napisów" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Mechanizm konwersji kodowania napisów" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Liczba wątków naprawiających" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Katalog na serwerze, w którym będą zapisywane eksportowane pliki" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Katalog do zapisu" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Należy pozostawić puste jeśli nie jest używane" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy msgid "Host authorization order" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Pozostaw puste, aby użyć wartości domyślnych" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy msgid "Host authorization rules" msgstr "Uwierzytelnianie sprzętowe nie powiodło się" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Pozwól na logowanie bez hasła" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Pozwól na logowanie się roota" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3668,19 +3685,19 @@ msgstr "" "SweKey[/a]. Relatywna ścieżka do głównego katalogu phpMyAdmin, np. ./swekey." "conf" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "Plik konfiguracyjny SweKey" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Jaka metoda uwierzytelniania ma być użyta" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3688,11 +3705,11 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać zakładek [a@http://wiki.phpmyadmin.net/" "pma/bookmark]bookmark[/a]. Sugerowana nazwa: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Tabela zakładek" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3700,32 +3717,32 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać komentarzy i typów mime. Sugerowana " "nazwa: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Tabela informacji o kolumnach" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Czy połączenie do serwera MySQL ma być kompresowane" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Kompresja połączenia" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Sposób połączenia z serwerem; w razie niepewności, należy pozostawić tcp" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Typ połączenia" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Hasło użytkownika monitorującego" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3734,19 +3751,19 @@ msgstr "" "jest dostępnych pod adresem: [a@http://wiki.phpmyadmin.net/pma/controluser]" "wiki[/a]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Użytkownik monitorujący" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Zliczaj tabele podczas pokazywania listy bazy danych" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Zliczaj tabele" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3754,11 +3771,11 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać trybu projektowania. Sugerowana nazwa: " "[kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Tabela trybu projektowania" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3767,29 +3784,29 @@ msgstr "" "tracker.php?aid=1849494]PMA bug tracker[/a] i [a@http://bugs.mysql.com/19588]" "MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Wyłącz używanie INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Jakiego rozszerzenie PHP ma być użyte; o ile jest obsługiwane, należy podać " "mysqli" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Rozszerzenie PHP" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Ukryj bazy danych pasujące do wyrażenia regularnego (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Ukryj bazy danych" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3797,31 +3814,31 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać historii zapytań SQL. Sugerowana nazwa: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "Tabela historii zapytań SQL" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Nazwa hosta na którym uruchomiony jest serwer MySQL" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Nazwa hosta serwera" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "URL wylogowania" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Ma być podejmowana próba łączenia się bez hasła" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Łącz się bez hasła" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3837,31 +3854,31 @@ msgstr "" "znakiem \\, by uzyskać je w znaczeniu dosłownym, np. 'moja\\_baza' a nie " "'moja_baza'" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Pokaż tylko wymienione bazy danych" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" "Należy pozostawić puste w przypadku innego niż config typu uwierzytelniania" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Hasło dla uwierzytelniania typu config" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "Schemat PDF: strony tabeli" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3872,22 +3889,22 @@ msgstr "" "pmadb]pmadb[/a]. Puste pole oznacza brak obsługi. Domyślna wartość: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nazwa bazy danych" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Port serwera" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3895,19 +3912,19 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać [a@http://wiki.phpmyadmin.net/pma/" "relation]relation-links[/a]. Sugerowana nazwa: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Tabela związków" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "Polecenie SQL do pobrania dostępnych baz danych" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "Polecenie SHOW DATABASES" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3915,132 +3932,132 @@ 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:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Nazwa sesji usługi pojedynczego logowania (Signon)" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "URL usługi pojedynczego logowania (Signon)" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Gniazdko, na którym nasłuchuje serwer MySQL, pole puste oznacza wartość " "domyślną" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Gniazdo serwera" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Aktywuj SSL do połączeń z serwerem MySQL" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Używaj SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "Schemat PDF: współrzędne tabeli" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Wyświetl komentarze dla kolumn" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Cecha" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Tryb automatycznej naprawy" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Użytkownik dla uwierzytelniania typu config" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4048,11 +4065,11 @@ msgstr "" "Dezaktywuj jeśli jesteś pewien, że tabele pma_* są zaktualizowane. To " "zapobiega ciągłemu sprawdzaniu kompatybilności, przez co zwiększa wydajność" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Szczegółowe sprawdzanie" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4060,19 +4077,19 @@ msgstr "" "Przyjazny opis serwera dla użytkownika. Pozostaw puste, aby wyświetlić nazwę " "hosta." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Szczegółowa nazwa serwera" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Pozwól wyświetlać wszystkie rekordy" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4083,35 +4100,35 @@ msgstr "" "pliku konfiguracyjnym. To nie ogranicza możliwości wykonania tego samego " "polecenia bezpośrednio" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Pokaż formularz zmiany hasła" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Pokaż formularz tworzenia bazy danych" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Pokaż otwarte tabele" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Wyświetla pola z funkcjami w trybie edycji/dodawania" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Pokaż pola z funkcjami" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4119,33 +4136,33 @@ msgstr "" "Pokazuje odnośnik do [a@http://php.net/manual/function.phpinfo.php]phpinfo()" "[/a]" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Pokaż odnośnik phpinfo()" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Pokaż szczegółowe informacje o serwerze MySQL" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Czy mają być pokazywane zapytania SQL generowane przez phpMyAdmina" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Pokaż zapytania SQL" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Pokaż statystyki" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4153,11 +4170,11 @@ msgstr "" "Jeśli podpowiedzi są włączone i ustawiony jest komentarz do bazy danych, " "zamienia komentarz i nazwę bazy danych" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Wyświetla komentarz do bazy danych zamiast jej nazwy" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4169,61 +4186,61 @@ msgstr "" "['LeftFrameTableSeparator']. A więc tylko katalog jest nazywany jako alias, " "a nazwa tabeli pozostaje niezmieniona" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Wyświetla komentarz do tabeli zamiast jej nazwy" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Wyświetla komentarz do tabeli w postaci podpowiedzi" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Zaznacza używane tabele i umożliwia pokazanie baz danych z zablokowanymi " "tabelami" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Pomiń zablokowane tabele" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Hasło" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Nazwa użytkownika" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4231,62 +4248,62 @@ msgstr "" "Sugeruje nazwę bazy danych podczas operacji "Utwórz bazę danych" " "(jeśli możliwe) lub zostawia puste pole" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Zasugeruj nazwę nowej bazy danych" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/usuń pola" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "Zmień nazwę bazy danych na" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4298,40 +4315,40 @@ 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:487 +#: libraries/config/messages.inc.php:486 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:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" "Katalog na serwerze, do którego można przesyłać pliki w celu importowania" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Katalog na przesyłane pliki" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Pozwól na przeszukiwanie całej bazy danych" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Przeszukiwanie bazy danych" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4341,15 +4358,15 @@ msgstr "" "Zobacz libraries/import.lib.php, aby dowiedzieć się ile instrukcja może " "domyślnie zawierać zapytań." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Szczegóły wielokrotnych instrukcji" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Sprawdź, czy jest nowsza wersja" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4357,7 +4374,7 @@ 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4382,74 +4399,74 @@ msgid "Signon authentication" msgstr "Typ uwierzytelniania" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV przy użyciu LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Skoroszyt Excel 97-2003 XLS" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Skoroszyt Excel 2007 XLSX" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Arkusz kalkulacyjny w formacie Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Własny kolor" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcje eksportu bazy danych" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Dane" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV dla MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Tekst w formacie Open Document" @@ -4495,7 +4512,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Zdarzenia" @@ -4524,8 +4541,8 @@ msgid "Designer" msgstr "Projektant" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Uprawnienia" @@ -4537,7 +4554,7 @@ msgstr "Procedury i funkcje" msgid "Return type" msgstr "Zwracany typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4569,18 +4586,18 @@ msgid "Details..." msgstr "Szczegóły…" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Zmień hasło" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Brak hasła" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ponownie" @@ -4603,8 +4620,8 @@ msgstr "Utwórz nową bazę danych" msgid "Create" msgstr "Utwórz" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Brak uprawnień" @@ -4748,8 +4765,8 @@ msgid "Compression:" msgstr "Typ kompresji" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Brak" @@ -4928,7 +4945,7 @@ msgstr "Sortuj wg klucza" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4963,8 +4980,8 @@ msgstr "Pokaż zawartość binarną" msgid "Show BLOB contents" msgstr "Pokaż zawartość BLOB" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Ukryj" @@ -4982,49 +4999,49 @@ msgstr "Wykonaj zapamiętanego zapytania" msgid "The row has been deleted" msgstr "Rekord został skasowany" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Unicestwij" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "w zapytaniu" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Pokaż rekordy " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "wszystkich" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Zmień" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Widok do druku (z pełnymi tekstami)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Wyświetl schemat PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Łącze nie znalezione" @@ -5501,12 +5518,12 @@ msgid "Data dump options" msgstr "Opcje eksportu bazy danych" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Zrzut danych tabeli" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktura tabeli dla " @@ -5559,9 +5576,9 @@ msgstr "Dostępne typy MIME" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -5711,40 +5728,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedury" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funkcje" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Ograniczenia dla zrzutów tabel" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Ograniczenia dla tabeli" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "TYPY MIME TABELI" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELACJE TABELI" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Wyzwalacze" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struktura widoku" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Zastąpiona struktura widoku" @@ -5779,43 +5796,43 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Wygenerowany przez" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero rekordów)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Zobacz zawartość struktury klikając jej nazwę" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\"" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\"" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Przejdź do bazy danych" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "ustawienia" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Przejdź do tabeli" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Przejdź do widoku" @@ -5867,7 +5884,7 @@ msgstr "Niewłaściwa liczba pól w linii %d danych wejściowych CSV." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nazwa tabeli" @@ -5948,7 +5965,7 @@ msgid "Charset" msgstr "Kodowanie napisów" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Binarne " @@ -6234,8 +6251,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Nazwa użytkownika" @@ -6254,7 +6271,7 @@ msgid "Variable" msgstr "Zmienna" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Wartość" @@ -6275,34 +6292,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Dodaj użytkownika replikacji na serwerze podrzędnym" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Dowolny użytkownik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Użyj pola tekstowego" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Dowolny host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Host lokalny" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Ten host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Użyj tabeli hostów" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6558,11 +6575,11 @@ msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s" msgid "Columns" msgstr "Nazwy kolumn" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Pozwól na dostęp wszystkim użytkownikom" @@ -6594,7 +6611,7 @@ msgstr "Tylko pokaż" msgid "Location of the text file" msgstr "Lokalizacja pliku tekstowego" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "katalog serwera WWW dla uploadu" @@ -6763,22 +6780,22 @@ msgid "" "author what %s does." msgstr "Transformacja ta nie ma opisu.
Proszę zapytać autora, co robi %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Mechanizm składowania" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Definicja partycji" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s pól" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7031,8 +7048,8 @@ msgstr "Inne kluczowe ustawienia" msgid "Protocol version" msgstr "Wersja protokołu" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Użytkownik" @@ -7069,7 +7086,7 @@ msgstr "Oficjalna strona phpMyAdmina" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7081,7 +7098,7 @@ msgstr "" "działa z takim ustawieniem, jest otwarty dla włamywaczy. Ta luka w " "bezpieczeństwie naprawdę powinna zostać naprawiona." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7090,7 +7107,7 @@ msgstr "" "Opcja mbstring.func_overload jest włączona w pliku konfiguracyjnym PHP. Jest " "ona niezgodna z phpMyAdminem i może powodować utratę niektórych danych!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7101,7 +7118,7 @@ msgstr "" "phpMyAdmin nie ma możliwości poprawnego rozbijania napisów, co może " "skutkować niespodziewanymi rezultatami." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7113,12 +7130,12 @@ msgstr "" "czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego powodu " "sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Plik konfiguracyjny wymaga teraz tajnej frazy kodującej (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7128,7 +7145,7 @@ msgstr "" "Będzie on nadal znajdował się w katalogu phpMyAdmina. Możesz go usunąć po " "skonfigurowaniu phpMyAdmina." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7137,14 +7154,14 @@ msgstr "" "Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby " "dowiedzieć się, dlaczego - kliknij %stutaj%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7153,7 +7170,7 @@ msgstr "" "Wersja %s biblioteki MySQL dla PHP różni się od wersji %s serwera MySQL. " "Może to powodować nieprzewidywalne zachowanie." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7495,115 +7512,115 @@ msgstr "Mechanizmy składowania" msgid "View dump (schema) of databases" msgstr "Zrzut baz danych" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Wszystkie uprawnienia, oprócz GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Pozwól zmieniać strukturę istniejących tabel." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Pozwól modyfikować i usuwać procedury składowane." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Pozwól tworzyć nowe bazy danych i tabele." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Pozwól tworzyć procedury składowane." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Pozwól tworzyć nowe tabele." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Pozwala tworzyć tabele tymczasowe." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Pozwól tworzyć perspektywy." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Pozwól usuwać dane." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Pozwól usuwać bazy danych i tabele." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Pozwól usuwać tabele." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Pozwól wykonywać procedury składowane." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Pozwól importować i eksportować dane z/do plików." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Pozwól dodawać użytkowników i nadawać uprawnienia bez przeładowywania tabeli " "uprawnień." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Pozwól tworzyć i usuwać indeksy." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Pozwól dodawać i zamieniać dane." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Pozwól blokować tabele dla aktualnego wątku." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ogranicz liczbę nowych połączeń, które może otworzyć użytkownik w ciągu " "godziny." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ogranicz liczbę zapytań, które może wysłać użytkownik w ciągu godziny." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7611,60 +7628,60 @@ msgstr "" "Ogranicz liczbę poleceń zmieniających jakąkolwiek tabelę lub bazę danych, " "które może wykonać użytkownik w ciągu godziny." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Pozwól oglądać procesy wszystkich użytkowyników" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nie ma żadnych skutków w tej wersji MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrzebne dla replikacji serwera podrzędnego." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Pozwól czytać dane." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Daj dostęp do pełnej listy baz danych." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Pozwól wyłączyć serwer." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7674,158 +7691,158 @@ msgstr "" "połączeń; Wymagane dla większość operacji administracyjnych, takich jak " "ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Pozwól tworzyć i usuwać wyzwalacze." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Pozwól zmieniać dane." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Brak uprawnień." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Brak" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globalne uprawnienia" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracja" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ograniczenia zasobów" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Dane użytkownika" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nie zmieniaj hasła" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znaleziono użytkownika(ów)." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Użytkownik %s już istnieje!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Nowy użytkownik został dodany." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Uaktualniłeś uprawnienia dla %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Uprawnienia dla %s zostały cofnięte" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Hasło dla %s zostało pomyślnie zmienione." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Przeładuj uprawnienia" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Wybrani użytkownicy zostali pomyślnie usunięci." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Uprawnienia zostały pomyślnie przeładowane." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Edytuj uprawnienia" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Cofnij" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Dowolny" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Opis użytkownika" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Nadawanie" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Dodaj nowego użytkownika" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Usuń zaznaczonych użytkowników" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7838,96 +7855,96 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Dodaj uprawnienia dla następującej bazy danych" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Aby użyć symboli wieloznacznych _ i % w znaczeniu dosłownym, należy je " "poprzedzić znakiem \\ " -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Dodaj uprawnienia dla następującej tabeli" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Zmień dane użytkownika / Skopiuj użytkownika" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "… pozostaw starego." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " … usuń starego z tabel użytkowników." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " … odbierz wszystkie aktywne uprawnienia staremu, a następnie go usuń." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " … usuń starego z tabel użytkowników, a następnie przeładuj uprawnienia." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Baza danych dla użytkownika" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Brak" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " "(nazwaużytkownika_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Przyznanie wszystkich uprawnień do bazy danych "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Użytkownicy mający dostęp do "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globalnie" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "znak wieloznaczny" @@ -8951,7 +8968,7 @@ msgstr "Nie można nawiązać połączenia z serwerem źródłowym" msgid "Could not connect to the target" msgstr "Nie można nawiązać połączenia z serwerem docelowym" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9468,12 +9485,12 @@ msgstr "Wyświetlane jest zapytanie SQL." msgid "Validated SQL" msgstr "Sprawdź poprawność SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Nazwa" @@ -9482,74 +9499,74 @@ msgstr "Nazwa" msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s została pomyślnie zmodyfikowana" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funkcja" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " To pole może nie dać się edytować
z powodu swojej długości " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Usuń odołanie do repozytorium BLOBów" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Binarne - nie do edycji " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Wrzuć do repozytorium BLOBów" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Dodaj jako nowy rekord" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Wyświetlane jest zapytanie SQL." -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "a następnie" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Wróć" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Dodaj nowy rekord" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Edytuj następny rekord" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Klawisz TAB przemieszcza pomiędzy wartościami, CTRL+strzałka przenosi w " "dowolne miejsce" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9660,12 +9677,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s już istnieje!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Tabela %1$s została utworzona." @@ -10162,11 +10179,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Brak wystarczających uprawnień!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil został uaktualniony." @@ -10178,163 +10195,3 @@ msgstr "Nazwa perspektywy" #, fuzzy msgid "Rename view to" msgstr "Zmień nazwę tabeli na" - -#, fuzzy -#~| msgid "CSV" -#~ msgid "SVG" -#~ msgstr "CSV" - -#~ msgid "" -#~ "This [a@?page=form&formset=features#tab_Security]option[/a] should be " -#~ "enabled if your web server supports it" -#~ msgstr "" -#~ "Ta [a@?page=form&formset=features#tab_Security]opcja[/a] powinna być " -#~ "włączona, jeśli serwer WWW ją obsługuje." - -#~ msgid "" -#~ "Enter each value in a separate field, enclosed in single quotes. If you " -#~ "ever need to put a backslash (\"\\\") or a single quote (\"'\") amongst " -#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a" -#~ "\\'b')." -#~ msgstr "" -#~ "Proszę wprowadzić wartości dla transformacji w następującym formacie: " -#~ "'a', 100, b,'c'…
Jeżeli potrzeba wprowadzić odwrotny ukośnik (\"\\" -#~ "\") lub apostrof (\"'\"), należy je poprzedzić odwrotnym ukośnikiem (np.: " -#~ "'\\\\xyz' lub 'a\\'b')." - -#~ msgid "" -#~ "Enter each value in a separate field. If you ever need to put a backslash " -#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with " -#~ "a backslash (for example '\\\\xyz' or 'a\\'b')." -#~ msgstr "" -#~ "Proszę wprowadzić wartości dla transformacji w następującym formacie: " -#~ "'a', 100, b,'c'…
Jeżeli potrzeba wprowadzić odwrotny ukośnik (\"\\" -#~ "\") lub apostrof (\"'\"), należy je poprzedzić odwrotnym ukośnikiem (np.: " -#~ "'\\\\xyz' lub 'a\\'b')." - -#~ msgid "New table" -#~ msgstr "Brak tabel" - -#~ msgid "server name" -#~ msgstr "nazwa serwera" - -#~ msgid "database name" -#~ msgstr "nazwa bazy danych" - -#~ msgid "table name" -#~ msgstr "nazwa tabeli" - -#~ msgid "Edit PDF Pages" -#~ msgstr "Edytuj strony PDF" - -#~ msgid "Data Dictionary Format" -#~ msgstr "Format słownika danych" - -#~ msgid "no" -#~ msgstr "nie" - -#~ msgid "PMA database" -#~ msgstr "Baza danych PMA" - -#~ msgid "Customization" -#~ msgstr "Indywidualizacja" - -#~ msgid "yes" -#~ msgstr "tak" - -#~ msgid "IF NOT EXISTS" -#~ msgstr ", ZMIENNA as mojanazwa" - -#~ msgid "AUTO_INCREMENT" -#~ msgstr ", ZMIENNA as mojanazwa" - -#~ msgid "Dump %s row(s) starting at row # %s" -#~ msgstr "Zrzuć %s rekordów zaczynając od rekordu %s." - -#~ msgid "remember template" -#~ msgstr "pamiętaj szablon" - -#~ msgid "Imported file compression will be automatically detected from: %s" -#~ msgstr "" -#~ "Rodzaj kompresji importowanych plików zostanie automatycznie rozpoznany " -#~ "jako jeden z: %s" - -#~ msgid "Add into comments" -#~ msgstr "Dodaj w komentarzach:" - -#~ msgid "Export functions" -#~ msgstr "Domyślne opcje eksportu" - -#~ msgid "Export triggers" -#~ msgstr "Rodzaj eksportu" - -#~ msgid "Export views" -#~ msgstr "Domyślne opcje eksportu" - -#~ msgid "Invalid column (%s) specified!" -#~ msgstr "Podano błędną kolumnę (%s)!" - -#~ msgid "Actions" -#~ msgstr "Działania" - -#~ msgid "Interface" -#~ msgstr "Interfejs" - -#~ msgid "Table removal" -#~ msgstr "Nazwa tabeli" - -#~ msgid "BLOB Repository" -#~ msgstr "Repozytorium BLOBów" - -#~ msgctxt "BLOB repository" -#~ msgid "Enabled" -#~ msgstr "włączone" - -#~ msgid "Disable" -#~ msgstr "Wyłącz" - -#~ msgid "Damaged" -#~ msgstr "Uszkodzone" - -#~ msgctxt "BLOB repository" -#~ msgid "Repair" -#~ msgstr "Napraw" - -#~ msgctxt "BLOB repository" -#~ msgid "Disabled" -#~ msgstr "wyłączone" - -#~ msgid "Enable" -#~ msgstr "Włącz" - -#~ msgid "" -#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " -#~ "extension. Please check your PHP configuration." -#~ msgstr "" -#~ "nie udało się załadować modułu %s,
proszę sprawdzić konfigurację PHP" - -#~ msgid "" -#~ "Couldn't load the iconv or recode extension needed for charset " -#~ "conversion. Either configure PHP to enable these extensions or disable " -#~ "charset conversion in phpMyAdmin." -#~ msgstr "" -#~ "Nie udało się załadować rozszerzeń iconv lub recode, które są niezbędne " -#~ "do konwersji kodowania napisów, skonfiguruj PHP tak, by mógł używać tych " -#~ "rozszerzeń albo zablokuj konwersję kodowania napisów w phpMyAdminie." - -#~ msgid "" -#~ "Couldn't use the iconv, libiconv, or recode_string functions, although " -#~ "the necessary extensions appear to be loaded. Check your PHP " -#~ "configuration." -#~ msgstr "" -#~ "Nie udało się użyć ani funkcji iconv, ani libiconv, mimo że rozszerzenia " -#~ "zgłaszają się jako załadowane. Proszę sprawdzić swoją konfigurację PHP." - -#~ msgid "Allow character set conversion" -#~ msgstr "Pozwalaj na konwersję kodowania napisów" - -#~ msgid "Default character set used for conversions" -#~ msgstr "Domyślne kodowanie napisów używane przy konwersjach" - -#~ msgid "Default character set" -#~ msgstr "Domyślne kodowanie napisów" diff --git a/po/pt.po b/po/pt.po index 5efd64bebe..1898ce4286 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-22 02:23+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: portuguese \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Mostrar tudo" @@ -35,17 +35,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pesquisar" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -60,14 +63,14 @@ msgstr "Pesquisar" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -119,7 +122,7 @@ msgid "Database comment: " msgstr "Comentário da Base de Dados: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Comentários da tabela" @@ -130,7 +133,7 @@ msgstr "Comentários da tabela" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -145,8 +148,8 @@ msgstr "Nome dos Campos" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -158,13 +161,13 @@ msgstr "Tipo" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nulo" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -183,8 +186,8 @@ msgid "Links to" msgstr "Links para" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -200,10 +203,10 @@ msgstr "Comentários" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Não" @@ -219,10 +222,10 @@ msgstr "Não" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -249,7 +252,7 @@ msgstr "Selecciona Todas" msgid "Unselect All" msgstr "Limpa Todas as Selecções" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 #, fuzzy msgid "The database name is empty!" msgstr "O nome da tabela está vazio!" @@ -264,75 +267,75 @@ msgstr "Tabela %s renomeada para %s" msgid "Database %s has been copied to %s" msgstr "Tabela %s copiada para %s." -#: db_operations.php:365 +#: db_operations.php:366 #, fuzzy msgid "Rename database to" msgstr "Renomeia a tabela para " -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Comando" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy msgid "Remove database" msgstr "Renomeia a tabela para " -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "A base de dados %s foi eliminada." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Sem bases de dados" -#: db_operations.php:442 +#: db_operations.php:445 #, fuzzy msgid "Copy database to" msgstr "Sem bases de dados" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Apenas dados" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Adicionar limitadores" -#: db_operations.php:483 +#: db_operations.php:486 #, fuzzy msgid "Switch to copied database" msgstr "Mudar para a tabela copiada" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 @@ -340,7 +343,7 @@ msgstr "Mudar para a tabela copiada" msgid "Collation" msgstr "Criação" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -352,24 +355,24 @@ msgstr "" "As Características adicionais para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %saqui%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Esquema relacional" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -380,33 +383,33 @@ msgstr "Registos" msgid "Size" msgstr "Tamanho" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "em uso" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Criação" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Actualização" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Verificação" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -415,7 +418,7 @@ msgstr[0] "%s tabela(s)" msgstr[1] "%s tabela(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -445,7 +448,7 @@ msgid "Descending" msgstr "Descendente" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Mostra" @@ -466,8 +469,8 @@ msgid "Del" msgstr "Elim." #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Ou" @@ -540,17 +543,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado(s) na tabela %s" msgstr[1] "%s resultado(s) na tabela %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Visualiza" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -595,157 +600,142 @@ msgstr "Dentro de Tabela(s):" msgid "Inside column:" msgstr "Dentro de Tabela(s):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Insere" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Estrutura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Elimina" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Limpa" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "A tabela %s foi limpa" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "O campo %s foi eliminado" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "A tabela %s foi eliminada" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 #, fuzzy msgid "Replication" msgstr "Relações" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Soma" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Com os seleccionados:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Todos" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Nenhum" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exportar" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Limpa" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Elimina" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimizar tabela" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dicionario de dados" @@ -754,13 +744,13 @@ msgstr "Dicionario de dados" msgid "Tracked tables" msgstr "Verificar tabela" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -788,8 +778,8 @@ msgstr "Estado" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Acções" @@ -837,12 +827,12 @@ msgstr "Verificar tabela" msgid "Database Log" msgstr "Base de Dados" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -913,7 +903,7 @@ msgstr "Marcador apagado com sucesso." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -936,7 +926,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Voltar" @@ -1017,11 +1007,11 @@ msgstr "O nome da máquina está vazio!" msgid "The user name is empty!" msgstr "O nome do utilizador está vazio!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Indique a palavras-passe!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "" "As palavras-passe são diferentes!\\nLembre-se de confirmar a palavra-passe!" @@ -1123,114 +1113,120 @@ msgid "Searching" msgstr "Pesquisar" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "Comando SQL" #: js/messages.php:85 +#, fuzzy +msgid "Show query box" +msgstr "Comando SQL" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modificações foram guardadas" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Vista de Relação" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Relações internas" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Características gerais de Relação" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Desactidado" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolha campo para mostrar" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Alterar a palavra-passe" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Gerado por" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Alterar a palavra-passe" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Seg" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "Dados" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1238,96 +1234,96 @@ msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binário " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1335,176 +1331,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dez" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dom" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Seg" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ter" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Sex" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "em uso" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1579,9 +1575,9 @@ msgid "Comment" msgstr "Comentários" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Edita" @@ -1602,15 +1598,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Base de Dados" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Erro" @@ -1850,6 +1846,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Insere" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Estrutura" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1916,7 +1938,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Servidor" @@ -1972,7 +1994,7 @@ msgstr "Mensagens do MySQL : " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Explicar SQL" @@ -1984,11 +2006,11 @@ msgstr "Saltar Explicar SQL" msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1997,7 +2019,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Saltar a validação SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validar SQL" @@ -2095,7 +2117,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2119,14 +2141,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Directoria no servidor web para fazer upload" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Não é possivel alcançar a directoria que configurou para fazer upload" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Estrutura" @@ -2256,7 +2278,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2266,15 +2288,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Guarda" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Limpa" @@ -2396,136 +2418,132 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Renomeia a tabela para " -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Mostrar Características" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "envia" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compressão" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2535,71 +2553,71 @@ msgstr "Compressão" msgid "Put columns names in the first row" msgstr "Coloca os nomes dos compos na primeira linha" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Campos delimitados por" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Campos precedidos por" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Substituir NULL por" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linhas terminadas por" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Linhas terminadas por" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edição Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2607,201 +2625,201 @@ msgstr "Nome do ficheiro modelo" msgid "Dump table" msgstr "%s tabela(s)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Incluir a legenda da tabela" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Legenda da tabela" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Continuação da legenda da tabela" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relações" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Tipo de Exportação" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Substituir o(s) ficheiro(s) existente(s)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Usar apóstrofes com os nomes das tabelas e campos" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Datas de Criação/Actualização/verificação" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy msgid "Use delayed inserts" msgstr "Instrucções de inserção múltiplas" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy msgid "Use ignore inserts" msgstr "Instrucções de inserção múltiplas" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Tipo de Exportação" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Tipo de Exportação" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "Dados CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "Importar" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "General" msgstr "Gerado por" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2809,211 +2827,211 @@ msgstr "" msgid "Import" msgstr "Exportar" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Importar" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "Servidor" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabelas" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 #, fuzzy msgid "Tables display options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Documentação" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Página número:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Documentação" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Relações" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "Comando SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "Comando SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "Comando SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Histórico SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3021,281 +3039,281 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Estado" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tabela" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Usar campo de texto" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Substituir os dados da tabela pelos do arquivo" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Coloca os nomes dos compos na primeira linha" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Adicionar valor AUTO_INCREMENT" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Mostrando comentários das Colunas" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3303,429 +3321,429 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "Sem bases de dados" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Limites do recurso" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alterar a ordem da tabela por" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Ligações" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Sem tablelas" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "versão do PHP" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Sem bases de dados" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "Escolha do Servidor" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3734,299 +3752,299 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy msgid "Database name" msgstr "Base de Dados" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Escolha do Servidor" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Reparar tabela" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Escolha do Servidor" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Mostrando comentários das Colunas" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Itens" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "Versão do servidor" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "Mostra tabelas" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Mostrar queries completos" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Estatísticas dos registos" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4034,123 +4052,123 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Mostra tabelas" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Palavra-passe" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Utilizador :" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Adicionar/Remover Campos" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Defeito" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4158,58 +4176,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4230,72 +4248,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opções de exportação da Base de Dados" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Dados" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "dados CSV para MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4334,7 +4352,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 #, fuzzy msgid "Events" msgstr "Enviado" @@ -4364,8 +4382,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilégios" @@ -4377,7 +4395,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4406,18 +4424,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Alterar a palavra-passe" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Sem palavra-passe" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Confirma" @@ -4438,8 +4456,8 @@ msgstr "Criar nova base de dados" msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Sem Privilégios" @@ -4574,8 +4592,8 @@ msgid "Compression:" msgstr "Compressão" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Nenhum" @@ -4733,7 +4751,7 @@ msgstr "Ordenar por chave" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4770,8 +4788,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4789,49 +4807,49 @@ msgstr "Executar um query marcado(do marcador)" msgid "The row has been deleted" msgstr "Registo eliminado" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Termina" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "na pesquisa" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Mostrando registos " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Muda" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Vista de impressão (com texto inteiro)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar o esquema de PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Link não encontrado" @@ -5255,12 +5273,12 @@ msgid "Data dump options" msgstr "Opções de exportação da Base de Dados" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Estrutura da tabela" @@ -5311,9 +5329,9 @@ msgstr "MIME-types disponíveis" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Máquina" @@ -5456,44 +5474,44 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "Processos" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Funções" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 #, fuzzy msgid "Constraints for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Limitadores para a tabela" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Somente estrutura" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 #, fuzzy msgid "Stand-in structure for view" msgstr "Somente estrutura" @@ -5528,44 +5546,44 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Gerado por" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5616,7 +5634,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5693,7 +5711,7 @@ msgid "Charset" msgstr "Mapa de Caractere" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Binário " @@ -5982,8 +6000,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Nome do Utilizador" @@ -6002,7 +6020,7 @@ msgid "Variable" msgstr "Variável" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Valor" @@ -6022,34 +6040,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Qualquer utilizador" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Usar campo de texto" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Qualquer máquina" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Este Anfitrião" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Usar a tabela do anfitrião" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6304,11 +6322,11 @@ msgstr "Executa comando(s) SQL na base de dados %s" msgid "Columns" msgstr "Nome dos Campos" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" @@ -6340,7 +6358,7 @@ msgstr "Ver apenas" msgid "Location of the text file" msgstr "Localização do arquivo de texto" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Directoria no servidor web para fazer upload" @@ -6505,21 +6523,21 @@ msgstr "" "Não há descrição disponível para esta transformação.
Pergunte ao autor, " "o que %s faz." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Adiciona novo campo" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6696,8 +6714,8 @@ msgstr "Características gerais de Relação" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Utilizador" @@ -6735,7 +6753,7 @@ msgstr "Página Oficial do phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6747,21 +6765,21 @@ msgstr "" "está a correr com este valor por defeito, assim aberto a intrusões, deveria " "corrigir este buraco de segurança." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6769,20 +6787,20 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "O ficheiro de configuração precisa agora de uma frase-passe secreta " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6791,21 +6809,21 @@ msgstr "" "As Características adicionais para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %saqui%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7141,117 +7159,117 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ver o esquema da base de dados" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "inclui todos os privilégios excepto Conceção - GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura de tabelas existentes." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Permite criar e apagar indexes." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permite criar novas Bases de Dados e tabelas." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Permite criar novas tabelas." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permite criar novas tabelas." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permite criar tabelas temporárias." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Permite criar novas tabelas." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permite apagar dados." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permite apagar Bases de Dados e tabelas." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permite apagar Bases de Dados." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 #, fuzzy msgid "Allows executing stored routines." msgstr "Permite criar novas tabelas." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar dados de... e exportar dados para ficheiros." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adicionar utilizadores e privilégios sem recarregar a tabela de " "privilégios." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permite criar e apagar indexes." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituir dados." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7259,218 +7277,218 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Não tem efeito nesta versão do MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permite ler dados." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Dá acesso à lista de bases de dados completa." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permite desligar o servidor." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Permite criar e apagar indexes." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permite alterar dados." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Sem privilégios." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nenhum" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: os nomes dos privilégios do MySQL são em Inglês " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Privilégios Globais" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administração" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limites do recurso" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informação de Login " -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Mantendo a palavra-passe " -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum utilizador encontrado." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "O utilizador %s já existe!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Actualizou os privilégios de %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anulou os privilégios para %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "A palavra-passe para %s foi alterada com sucesso." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "A apagar %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "A recarregar privilégios" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Alterar Privilegios" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Anula" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Todos" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Acrescenta um utilizador" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Remover utilizadores seleccionados" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" "Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7483,49 +7501,49 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Privilégios específicos da Coluna" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Adicionar privilégios na base de dados seguinte" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Todos privilégios na tabela seguinte" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Mudar a informação de login / Copiar Utilizador" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo utilizador com os mesmo privilégios e ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... apagar o antigo das tabelas do utilizador." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revogar todos os privilégios activos do antigo e a seguir apagá-lo." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7533,44 +7551,44 @@ msgstr "" " ... apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nenhum" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verificar Privilégios para a Base de Dados "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Utilizadores que tem acesso a "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8468,7 +8486,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8881,12 +8899,12 @@ msgstr "Mostrar queries completos" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etiqueta" @@ -8895,72 +8913,72 @@ msgstr "Etiqueta" msgid "Table %1$s has been altered successfully" msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funções" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Devido ao seu tamanho,
este campo pode não ser editável " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Binário - não editar " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Insere como novo registo" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Voltar atrás" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Inserir novo registo" -#: tbl_change.php:1052 +#: tbl_change.php:1054 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9064,12 +9082,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "O utilizador %s já existe!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "A tabela %s foi eliminada" @@ -9565,11 +9583,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Descrição" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Não tem permissões suficientes para aceder aqui, neste momento!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "O prefil foi actualizado." diff --git a/po/pt_BR.po b/po/pt_BR.po index 113000b93a..374b25ff8c 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-13 23:58+0200\n" "Last-Translator: William Bachion \n" "Language-Team: brazilian_portuguese \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Mostrar todos" @@ -38,17 +38,20 @@ msgstr "" "fechado a janela alvo ou o seu navegador tenha bloqueado a comunicação entre " "janelas nas configurações de segurança." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Procurar" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "Comentário do Banco de Dados: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Comentários da tabela" @@ -135,7 +138,7 @@ msgstr "Comentários da tabela" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -150,8 +153,8 @@ msgstr "Nome das colunas" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -163,13 +166,13 @@ msgstr "Tipo" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nulo" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -188,8 +191,8 @@ msgid "Links to" msgstr "Links para" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -205,10 +208,10 @@ msgstr "Comentários" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Não" @@ -224,10 +227,10 @@ msgstr "Não" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -254,7 +257,7 @@ msgstr "Selecionar Todos" msgid "Unselect All" msgstr "Desmarcar Todos" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "O nome do Banco de Dados está em branco!" @@ -268,80 +271,80 @@ msgstr "O Banco de Dados %s foi renomeado para %s" msgid "Database %s has been copied to %s" msgstr "Banco de Dados %s copiado para %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Renomear Banco de Dados para" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Comando" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Renomear Banco de Dados para" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Banco de Dados %s foi eliminado." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Sem bases" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Copiar Banco de Dados para" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Dados apenas" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Adicionar restrições" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Mudar para o Banco de Dados copiado" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -353,24 +356,24 @@ msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Esquema relacional" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -381,33 +384,33 @@ msgstr "Registros" msgid "Size" msgstr "Tamanho" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "em uso" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Criação" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Última atualização" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Última verificação" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgstr[0] "%s tabela(s)" msgstr[1] "%s tabela(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "Descendente" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Mostrar" @@ -467,8 +470,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Ou" @@ -541,17 +544,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado(s) dentro da tabela %s" msgstr[1] "%s resultado(s) dentro da tabela %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Visualizar" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -596,156 +601,141 @@ msgstr "Dentro da(s) tabela(s):" msgid "Inside column:" msgstr "Dentro do campo:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Inserir" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Estrutura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Eliminar" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Limpar" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s foi esvaziada" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Visão %s foi apagada" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s foi eliminada" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Visão" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replicação" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Soma" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o stored engine padrão neste servidor MySQL." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Com marcados:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Desmarcar todos" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Verificar sobre-carga" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exportar" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Limpar" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Eliminar" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Otimizar tabela" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dicionário de dados" @@ -754,13 +744,13 @@ msgstr "Dicionário de dados" msgid "Tracked tables" msgstr "Verificar tabela" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -788,8 +778,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Ação" @@ -837,12 +827,12 @@ msgstr "Verificar tabela" msgid "Database Log" msgstr "Banco de Dados" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -921,7 +911,7 @@ msgstr "O marcador foi removido." msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" @@ -949,7 +939,7 @@ msgstr "" "aumente o tempo limite do PHP." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Voltar" @@ -1030,11 +1020,11 @@ 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:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "A senhas está em branco!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" @@ -1139,113 +1129,119 @@ msgid "Searching" msgstr "Procurar" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "consulta SQL" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "consulta SQL" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Engines" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modificações foram salvas" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relacionamento apagado" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Adicionado relacionamento Interno" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Erro: relacionamento não adicionado." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Erro: relacionamento já existe." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Erro ao salvar coordenada para o Designer." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Recursos de relações gerais" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Desabilitado" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Seleciona chave referenciada" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Selecionar Chave Estrangeira" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Por favor, selecione uma chave primária ou uma chave única" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolha o campo para exibir" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Gerar Senha" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Gerar" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Alterar a senha" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Seg" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "Dados" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1253,96 +1249,96 @@ msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binário " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1350,176 +1346,176 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dez" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dom" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Seg" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ter" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Sex" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "em uso" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1597,9 +1593,9 @@ msgid "Comment" msgstr "Cometário" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Editar" @@ -1622,15 +1618,15 @@ msgstr "" "A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido " "removida." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Banco de Dados" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Erro" @@ -1879,6 +1875,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Inserir" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Estrutura" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1946,7 +1968,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Servidor" @@ -2000,7 +2022,7 @@ msgstr "Mensagens do MySQL : " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Explicar SQL" @@ -2012,11 +2034,11 @@ msgstr "Pular Explicação SQL" msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Atualizar" @@ -2025,7 +2047,7 @@ msgstr "Atualizar" msgid "Skip Validate SQL" msgstr "Pular validação SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validar SQL" @@ -2125,7 +2147,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2149,7 +2171,7 @@ msgid "Select from the web server upload directory %s:" msgstr "Servidor web subiu o diretório" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado." @@ -2157,7 +2179,7 @@ msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Estrutura" @@ -2287,7 +2309,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2297,15 +2319,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Salvar" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Restaurar" @@ -2427,140 +2449,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Renomear Banco de Dados para" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Renomear Banco de Dados para" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Renomear Banco de Dados para" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Editar próximo registro" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Exibir recursos" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Enviado" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Conjunto de caracteres do arquivo" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compressão" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2570,71 +2588,71 @@ msgstr "Compressão" msgid "Put columns names in the first row" msgstr "Colocar nome do campo na primeira linha" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Campos delimitados por" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Campos contornados por" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Substituir NULL por" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linhas terminadas por" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Linhas terminadas por" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edição do Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Nome do arquivo do modelo" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Nome do arquivo do modelo" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Nome do arquivo do modelo" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2642,411 +2660,411 @@ msgstr "Nome do arquivo do modelo" msgid "Dump table" msgstr "%s tabela(s)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Incluir legenda da tabela" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Leganda da Tabela" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Continuação da legenda da tabela" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Rótulo da chave" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relações" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Tipo de exportação" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Sobrescrever arquivo(s) existente(s)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Nome do arquivo do modelo" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Usar aspas simples nos nomes de tabelas e campos" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Modo de compatibilidade SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Criar/Atualizar/Verificar datas" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Usar inserções demoradas" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Desabilitar verificação de chaves estrangeiras" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Usar hexadecimal para BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Usar inserções ignoradas" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Tamanho máximo da consulta gerada" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Tipo de exportação" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Encapsular exportação numa transação" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Tipo de exportação" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "Importar arquivos" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Gerar" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importar" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Importar arquivos" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servidores" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabelas" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 #, fuzzy msgid "Tables display options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Abrir Documento de Texto" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Numero da página:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Janela de consulta" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Segurança" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy msgid "Authentication" msgstr "Autenticando..." -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Autenticando..." -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration" msgid "Configuration storage" msgstr "Configuração" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "consulta SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "consulta SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "consulta SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Histórico de consultas" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3054,72 +3072,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tabela" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Usar campo texto" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! texto" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3130,213 +3148,213 @@ msgstr "" "perto do tempo limite. Isso pode ser um bom caminho para importar arquivos " "grandes, entretanto isso pode interromper as transações." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignorar linhas duplicadas" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Substituir os dados da tabela pelos do arquivo" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Formato do arquivo importado" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Usar palavra-chave LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Colocar nome do campo na primeira linha" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Número de registros (consultas) ignoradas no início" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Adicionar valor AUTO_INCREMENT" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "O número de linhas ordenadas." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Exibindo comentários da coluna" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Nome do arquivo do modelo" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "Versão do cliente MySQL" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3344,439 +3362,439 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "Sem bases" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Limite dos recursos" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Exibir/Ocultar menu da esquerda" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alterar tabela ordenada por" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Janela de consulta" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Janela de consulta" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Janela de consulta" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Processos de reparo" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Diretório raiz de dados" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy msgid "Host authorization order" msgstr "Falha na autenticação de hardware" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy msgid "Host authorization rules" msgstr "Falha na autenticação de hardware" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy msgid "Authentication method to use" msgstr "Autenticando..." -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 #, fuzzy msgid "Authentication type" msgstr "Autenticando..." -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Conexões" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Sem tabelas" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Desfragmentar tabela" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "Versão do PHP" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Sem bases" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "nome do servidor" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3785,302 +3803,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nome do Banco de Dados" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "ID do Servidor" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Reparar tabela" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Seleção do Servidor" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Exibindo comentários da coluna" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Comandos" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Modo de recuperação automático" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Exibir tabelas abertas" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Mostrar consultas completas" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Estatísticas do registros" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4088,122 +4106,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Exibir tabelas abertas" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Senha" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Usuário:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Adicionar/Remover colunas" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "Renomear Banco de Dados para" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4211,59 +4229,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "Diretório raiz de dados" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4288,72 +4306,72 @@ msgid "Signon authentication" msgstr "Falha na autenticação de hardware" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Planilha Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opções de exportação do Banco de Dados" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Dados" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV para dados MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Abrir Documento de Texto" @@ -4392,7 +4410,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Eventos" @@ -4421,8 +4439,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilégios" @@ -4434,7 +4452,7 @@ msgstr "Rotinas" msgid "Return type" msgstr "Tipo de returno" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4465,18 +4483,18 @@ msgid "Details..." msgstr "Detalhes..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Alterar a senha" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Sem senha" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-digite" @@ -4499,8 +4517,8 @@ msgstr "Criar novo Banco de Dados" msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Sem privilégios" @@ -4644,8 +4662,8 @@ msgid "Compression:" msgstr "Compressão" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Nenhum" @@ -4818,7 +4836,7 @@ msgstr "Ordenar pela chave" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4853,8 +4871,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Ocultar" @@ -4872,49 +4890,49 @@ msgstr "Executar consulta marcada" msgid "The row has been deleted" msgstr "Registro eliminado" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Matar" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "na consulta" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Mostrando registros " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Alterar" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Ver impressão (com textos completos)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Exibir esquema PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Link não encontrado" @@ -5357,12 +5375,12 @@ msgid "Data dump options" msgstr "Opções de exportação do Banco de Dados" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Estrutura da tabela" @@ -5419,9 +5437,9 @@ msgstr "MIME-type disponíveis" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Servidor" @@ -5569,40 +5587,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedimentos" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funções" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Restrições para as tabelas dumpadas" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Restrições para a tabela" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPES PARA AS TABELAS" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELAÇÕES PARA A TABELA" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Gatilhos" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Estrutura para visualizar" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Estrutura stand-in para visualizar" @@ -5638,44 +5656,44 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Gerado por" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou um conjunto vazio (ex. zero registros)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Sem bases" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "Sem bases" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5727,7 +5745,7 @@ msgstr "Contador de campo inválido na linha %d da entrada CSV." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Nome da Tabela" @@ -5806,7 +5824,7 @@ msgid "Charset" msgstr "Conjunto de caracteres" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Binário " @@ -6091,8 +6109,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Nome do usuário" @@ -6113,7 +6131,7 @@ msgid "Variable" msgstr "Variáveis" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Valor" @@ -6132,34 +6150,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Qualquer usuário" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Usar campo texto" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Qualquer servidor" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Esse Servidor" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Usar Tabela do Servidor" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6415,11 +6433,11 @@ msgstr "Fazer consulta SQL no Banco de Dados %s" msgid "Columns" msgstr "Nome das colunas" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Gravar essa consulta SQL" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" @@ -6451,7 +6469,7 @@ msgstr "Apenas visualizar" msgid "Location of the text file" msgstr "Localização do arquivo texto" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Servidor web subiu o diretório" @@ -6619,22 +6637,22 @@ msgstr "" "Sem descrição disponível para essa transformação.
Pergunte ao autor o " "que %s faz." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Definição da PARTIÇÃO" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adicionar %s campo(s)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6885,8 +6903,8 @@ msgstr "Recursos de relações gerais" msgid "Protocol version" msgstr "Versão do Protocolo" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Usuário" @@ -6923,7 +6941,7 @@ msgstr "Página Oficial do phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6935,7 +6953,7 @@ msgstr "" "com esse padrão estará aberto a invasões, você realmente deveria corrigir " "este furo de segurança." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6944,7 +6962,7 @@ msgstr "" "Você habilitou mbstring.func_overload nas configurações do PHP. Essa opção é " "incompatível com o phpMyAdmin e certamente causará a perda de algum dado!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6955,7 +6973,7 @@ msgstr "" "será capaz de dividir as strings corretamente isso pode causar resultados " "inesperados." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6963,20 +6981,20 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "O arquivo de configuração agora precisa de uma frase secreta com senha " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6985,14 +7003,14 @@ msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7001,7 +7019,7 @@ msgstr "" "Sua versão %s da biblioteca MySQL do PHP difere da versão %s do seu servidor " "MySQL. Isso pode causar um comportamento estranho." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7342,114 +7360,114 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "Ver dump (esquema) dos Bancos de Dados" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Incluir todos os privilégios, exceto GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permitir alterar a estrutura das tabelas existentes." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permitir alterar e apagar stored routines." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permitir criar novas tabelas e Banco de Dados." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permitir criar stored routines." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permitir criar novas tabelas." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permitir criar tabelas temporárias." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permitir criar, apagar e renomear contas dos usuários." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permitir criar novas visões." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permitir apagar dados." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permitir eliminar Banco de Dados e tabelas." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permitir eliminar tabelas." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permitir iniciar eventos no cronograma de eventos" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permitir executar stored routines." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Permitir importar dados e exportar dados em arquivos." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permitir adicionar usuários e privilégios sem recarregar a tabela de " "privilégios." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permitir criar e eliminar índices." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permitir inserir e substituir dados." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permitir bloquear tabelas para a processo atual." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limitar o numero de novas conexões que o usuário pode abrir por hora." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limitar o número de consultas que podem ser enviadas ao servidor por hora." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7457,60 +7475,60 @@ msgstr "" "Limitar o número de comandos que alteram Bancos de Dados ou tabelas que o " "usuário pode executar por hora." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permitir visualizar processos de todos os usuários" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Sem efeitos nesta versão do MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permitir recarregar configurações do servidor e descarregar o cache do " "servidor." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Precisar dos escravos de replicação." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permitir leitura dos dados." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Permitir acesso completo à lista de Bancos de Dados." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permitir executar consultas SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permitir desligar o servidor." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7520,157 +7538,157 @@ msgstr "" "para muitas operações administrativas, como setar variáveis globais e matar " "processos de outros usuários." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permitir criar e e largar em cadeia" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permitir modificar dados." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Sem privilégios." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nenhum" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: nomes de privilégios do MySQL são expressos em inglês " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Privilégios globais" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Privilégios específicos do Banco de Dados" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administração" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limite dos recursos" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informação de login" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Não mudar a senha" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum usuário(s) encontrado." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "O usuário %s já existe!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Adicionado usuário" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Você mudou os priviléios para %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Você revogou os privilégios para %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "A senha para %s foi modificada com sucesso." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Eliminando %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nenhum usuário selecionado para exclusão!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Recarregando os privilégios" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Os usuários selecionados foram apagados com sucesso." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Editar Privilégios" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Revogar" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Qualquer" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Avaliação dos usuários" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Adicionar novo usuário" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Remover os usuários selecionados" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios ativos dos usuarios e depois apagar eles." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7683,50 +7701,50 @@ msgstr "" "privilégios que o servidor usa se alterações manuais forem feitas nele. " "Neste caso, você deve usar %sRELOAD PRIVILEGES%s antes de continuar.." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Privilégios específicos da coluna" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Adicionar privilégios nas seguintes Banco de Dados" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Coringas _ e % precisam ser precedidos com uma \\ para serem usados " "literalmente" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Adicionar privilégios nas seguintes tabelas" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Mudar informações de login / Copiar usuário" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo usuário com os mesmos privilégios e ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... apagar o antigo da tabela de usuários." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... revogar todos privilégios do usuário antigo e depois apagar ele." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7734,44 +7752,44 @@ msgstr "" " ... apagar o antigo da tabela de usuários e depois recarregar os " "privilégios." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Banco de Dados para usuário" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nenhum" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Criar Banco de Dados com o mesmo nome e conceder todos os privilégios" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilégios no banco de dados "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Usuários que têm acesso à "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Específico do Banco de Dados" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "coringa" @@ -8790,7 +8808,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9204,12 +9222,12 @@ msgstr "Exibindo consulta SQL" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com o índice da tabela `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Nome" @@ -9218,74 +9236,74 @@ msgstr "Nome" msgid "Table %1$s has been altered successfully" msgstr "A tabela %1$s foi alterada com sucesso" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funções" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Por causa da sua largura,
esse campo pode não ser editável " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Binário - não edite " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Exibindo consulta SQL" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "e então" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Retornar" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Inserir novo registro" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Voltar para esta página" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Editar próximo registro" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover " "em qualquer direção" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9396,12 +9414,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s já existe!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "A tabela %1$s foi criada." @@ -9895,11 +9913,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Descrição" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Você não tem direitos suficientes para estar aqui agora!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "A configuração foi atualizada." diff --git a/po/ro.po b/po/ro.po index d710607098..eb60e06ece 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" @@ -16,7 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Arată toate" @@ -39,17 +39,20 @@ msgstr "" "închisă, sau fereastra-părinte blochează ferestrele din cauza securității " "sistemului." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Caută" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "Caută" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -125,7 +128,7 @@ msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Comentarii tabel" @@ -136,7 +139,7 @@ msgstr "Comentarii tabel" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -151,8 +154,8 @@ msgstr "Denumirile coloanelor" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -164,13 +167,13 @@ msgstr "Tip" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nul" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -189,8 +192,8 @@ msgid "Links to" msgstr "Trimitere la" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -206,10 +209,10 @@ msgstr "Comentarii" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nu" @@ -225,10 +228,10 @@ msgstr "Nu" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgstr "Selectează tot" msgid "Unselect All" msgstr "Deselectează tot" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Cîmpul de denumire al bazei de date este gol!" @@ -269,80 +272,80 @@ msgstr "Baza de date %s a fost redenumită în %s" msgid "Database %s has been copied to %s" msgstr "Baza de date %s a fost copiata la %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Redenumire bază de date în" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Comanda" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Redenumire bază de date în" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Baza de date %s a fost aruncată." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nu sînt baze de date" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Copiază baza de date" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Numai structura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Structura și date" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Numai date" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Adăugare %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Adaugă constrângeri" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Schimbă la tabela copiată" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Interclasare" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,24 +357,24 @@ msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce ... %shere%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Schema relațională" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -382,33 +385,33 @@ msgstr "Linie" msgid "Size" msgstr "Mărime" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "în folosință" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Creare" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Ultima actualizare" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Ultima verficare" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -418,7 +421,7 @@ msgstr[1] "%s tabele" msgstr[2] "%s tabele" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -448,7 +451,7 @@ msgid "Descending" msgstr "Descrescător" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Afișează" @@ -469,8 +472,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Sau" @@ -544,17 +547,19 @@ msgstr[0] "%s rezultat(e) în interiorul tabelului %s" msgstr[1] "%s rezultat(e) în interiorul tabelului %s" msgstr[2] "%s rezultat(e) în interiorul tabelului %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Navigare" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -600,69 +605,30 @@ msgstr "În interiorul tabelei(lor):" msgid "Inside column:" msgstr "În cîmpul:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Inserare" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Structură" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Aruncă" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Golește" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabelul %s a fost golit" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Vizualizarea %s a fost eliminată" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabelul %s a fost aruncat" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Monitorizarea este activată" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Monitorizarea nu este activată" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -670,87 +636,111 @@ msgid "" msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Vizualizare" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replicare" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Sumă" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Cele bifate:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Marchează toate" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Demarchează toate" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Verificare depășit" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exportă" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Vizualizare imprimare" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Golește" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Aruncă" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Verificare tabel" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimizare tabel" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Reparare tabel" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizare tabel" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dicționar de date" @@ -759,13 +749,13 @@ msgstr "Dicționar de date" msgid "Tracked tables" msgstr "Tabelele urmărite" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -791,8 +781,8 @@ msgstr "Stare" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Acțiune" @@ -842,12 +832,12 @@ msgstr "Tabele monitorizate" msgid "Database Log" msgstr "Jurnalul (log) bazei de date" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -928,7 +918,7 @@ msgstr "Eticheta a fost ștearsă." msgid "Showing bookmark" msgstr "Afișînd semn de carte" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Semnul de carte %s a fost creat" @@ -955,7 +945,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Înapoi" @@ -1036,11 +1026,11 @@ msgstr "Numele gazdei este gol!" msgid "The user name is empty!" msgstr "Numele de utilizator este gol!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Parola este goală!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Parolele nu corespund!" @@ -1145,113 +1135,119 @@ msgid "Searching" msgstr "Caută" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "Comanda SQL" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "Comanda SQL" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Motoare" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Modificările au fost salvate" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relație ștearsă" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Relație internă adăugată" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Eroare: Relația nu a fost adăugată." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Eroare: relația deja există." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Eroare la salvarea coordonatelor pentru Designer." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Facilități generale" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Dezactivat" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Alegere cheie referențiată" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Alegeți cheia străină" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Selectează un cîmp" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generează parolă" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generează" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Schimbare parolă" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Lun" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "Date" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1259,96 +1255,96 @@ msgid "Next" msgstr "Următorul" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mai" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Oct" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1356,178 +1352,178 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dec" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dum" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lun" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Vin" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sâm" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dum" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lun" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mie" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Joi" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Vin" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sâm" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "în folosință" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1603,9 +1599,9 @@ msgid "Comment" msgstr "Comentariu" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Editare" @@ -1626,15 +1622,15 @@ msgid "" "removed." msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Baze de date" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Eroare" @@ -1889,6 +1885,32 @@ msgstr "Descarcă fișierul" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Inserare" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Structură" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1959,7 +1981,7 @@ msgstr "" "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "dumneavoastră." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -2015,7 +2037,7 @@ msgstr "MySQL zice: " msgid "Failed to connect to SQL validator!" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Explică SQL" @@ -2027,11 +2049,11 @@ msgstr "Sari peste explicarea SQL" msgid "Without PHP Code" msgstr "fără cod PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Creează cod PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Reîncarcă" @@ -2040,7 +2062,7 @@ msgstr "Reîncarcă" msgid "Skip Validate SQL" msgstr "Sari peste validarea SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validează SQL" @@ -2140,7 +2162,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2164,14 +2186,14 @@ msgid "Select from the web server upload directory %s:" msgstr "director de încărcare al serverului Web" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Structură" @@ -2302,7 +2324,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2312,15 +2334,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Salveaza" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Resetare" @@ -2442,140 +2464,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Opțiuni de afișare a bazelor de date" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Redenumire bază de date în" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Redenumire bază de date în" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Redenumire bază de date în" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Editează rîndul următor" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Arată facilitățile" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Trimite" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Setul de caractere al fișierului" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compresie" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2585,71 +2603,71 @@ msgstr "Compresie" msgid "Put columns names in the first row" msgstr "Pune numele cîmpului în primul rînd" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Cîmpuri încadrate de" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Cîmpuri realizate de" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Înlocuire NULL cu" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linii terminate de" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Linii terminate de" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Ediția Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Șablon nume fișier" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Șablon nume fișier" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Șablon nume fișier" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2657,411 +2675,411 @@ msgstr "Șablon nume fișier" msgid "Dump table" msgstr "%s tabele" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Include captură tabel" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Captură tabel" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Continuare captură tabel" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Tasta label" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Tip MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Legături" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Modul de export" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Salvează pe server" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Suprascrie fișier(e) existent(e)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Șablon nume fișier" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Utilizati apostroful pentru numele tabelelor și a campurilor" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Regim de compatibilitate SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Creare/reînnoire/verificare date" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Folosește inserări întîrziate" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Dezactivare verificări de cheie străine" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Folosește hexazecimale pentru BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Utilizați ignorare inserări" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Lungimea maximă a interogării create" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Modul de export" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Cuprinde exportarea într-o tranzacție" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Modul de export" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 #, fuzzy msgid "Force SSL connection" msgstr "Comprimă conexiunea" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Regim de navigare" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Personalizează regimul de navigare" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Regim de redactare" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Personalizează regimul de redactare" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "Import fișiere" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funcționalități" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generează" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importă" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Import fișiere" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Import / export" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Opțiuni de afișare a bazelor de date" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Personalizează aspectul cadrului de navigare" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servere" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "Opțiuni de afișare a tabelelor" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabele" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Opțiuni de afișare a tabelelor" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Cadrul principal" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Text Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Numărul paginii:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize navigation frame" msgstr "Personalizează cadrul principal" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Personalizează cadrul principal" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "Comanda SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "Comanda SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "Comanda SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Istoric SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3069,71 +3087,71 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Stare" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "File" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Alegeți cum doriți să funcționeze filele" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Utilizare cîmp text" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3144,213 +3162,213 @@ 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:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignoră rînduri duplicate" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Înlocuiește datele tabelului cu fișier" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Formatul fișierului importat" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Folosește cuvîntul-cheie LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Pune numele cîmpului în primul rînd" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, 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:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "Numărul de rînduri sortate." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Arată comentariile coloanei" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Șablon nume fișier" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "Versiunea clientului MySQL" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3358,434 +3376,434 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "Ascunde baze de date" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum tables" msgstr "Ascunde baze de date" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Limitare de resurse" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Arată/ascunde meniul stîng" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alterare „ordonare tabel după”" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Repară firele de execuție" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Directorul de bază pentru date" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy msgid "Host authorization order" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy msgid "Host authorization rules" msgstr "Hardware authentication failed" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Permite autentificarea ca „root”" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Metoda de autentificare de utilizat" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Comprimă conexiunea" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Tipul conexiunii" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Nu există tabele" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Defragmentare tabel" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Extensia PHP de utilizat" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Ascunde baze de date" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Numele de gazdă al serverului" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Încearcă conectarea fără parolă" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Conectează fără parolă" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3794,302 +3812,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Lăsați gol dacă nu utilizați „config auth”" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Parola pentru „config auth”" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nume bază de date" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Portul serverului" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Reparare tabel" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Soclul serverului" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Utilizează SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Arată comentariile coloanei" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Comenzi" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Regim de recuperare automată" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Utilizator pentru „config auth”" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Afișează tabele deschise" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Afișare comandă întreagă" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Statisticile rîndului" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4097,122 +4115,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Afișează tabele deschise" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Parola" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Nume utilizator:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Adaugă/șterge coloane" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "Redenumire bază de date în" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4220,59 +4238,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "Directorul de bază pentru date" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4297,74 +4315,74 @@ msgid "Signon authentication" msgstr "Tipul autentificării" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV folosind LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Foaie de calcul Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Culoare personalizată" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opțiuni de exportare a bazei de date" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Date" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "Date CSV pentru MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Text Open Document" @@ -4404,7 +4422,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Evenimente" @@ -4433,8 +4451,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Drepturi de acces" @@ -4446,7 +4464,7 @@ msgstr "Rutine" msgid "Return type" msgstr "Tipul întors" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4475,18 +4493,18 @@ msgid "Details..." msgstr "Detalii..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Schimbare parolă" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Nu există parolă" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Re-tastează" @@ -4509,8 +4527,8 @@ msgstr "Creează bază de date nouă" msgid "Create" msgstr "Creează" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Nu există drepturi de acces" @@ -4656,8 +4674,8 @@ msgid "Compression:" msgstr "Compresie" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Nici unul(a)" @@ -4829,7 +4847,7 @@ msgstr "Sortare după cheie" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4864,8 +4882,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Ascunde" @@ -4883,49 +4901,49 @@ msgstr "Executare comandă marcată" msgid "The row has been deleted" msgstr "Linia a fost ștearsă" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Oprește" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "în interogarea" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Afișează înregistrări" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Schimbare" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Vizualizare listare (împreună cu text)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Arată schema PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Legatură nevalidă" @@ -5403,12 +5421,12 @@ msgid "Data dump options" msgstr "Opțiuni de afișare a bazelor de date" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Salvarea datelor din tabel" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Structura de tabel pentru tabelul" @@ -5461,9 +5479,9 @@ msgstr "Tipuri MIME disponibile" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Gazda" @@ -5609,40 +5627,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Proceduri" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funcții" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Restrictii pentru tabele" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "TIPURI MIME PENTRU TABEL" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELAȚII PENTRU TABEL" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Declanșatori" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Structură pentru vizualizare" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" @@ -5678,44 +5696,44 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Generat de" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5767,7 +5785,7 @@ msgstr "Invalid field count in CSV input on line %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Denumire tabel" @@ -5846,7 +5864,7 @@ msgid "Charset" msgstr "Set de caractere" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binar" @@ -6131,8 +6149,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Nume utilizator" @@ -6153,7 +6171,7 @@ msgid "Variable" msgstr "Variabil" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Valoare" @@ -6172,34 +6190,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Oricare utilizator" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Utilizare cîmp text" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Oricare gazdă" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Această gazdă" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Utilizare tabel gazde" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6456,11 +6474,11 @@ msgstr "Execută interogare SQL asupra bazei de date %s" msgid "Columns" msgstr "Denumirile coloanelor" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" @@ -6492,7 +6510,7 @@ msgstr "Numai vizualizare" msgid "Location of the text file" msgstr "Locația fișierului textual" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "director de încărcare al serverului Web" @@ -6658,22 +6676,22 @@ msgstr "" "Nu este disponibilă nici o descriere pentru această transformare.
Întrebați autorul de funcțiile îndeplinite de %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Motor de stocare" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Definiție PARTIȚIE" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adaugă %s cîmp(uri)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6925,8 +6943,8 @@ msgstr "Facilități generale" msgid "Protocol version" msgstr "Versiune protocol" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Utilizator" @@ -6963,7 +6981,7 @@ msgstr "Pagina oficială phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6974,7 +6992,7 @@ msgstr "" "Serverul MySQL poate fi astfel vulnerabil. Reparați neapărat această " "greșeală." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6983,7 +7001,7 @@ msgstr "" "Ați activat mbstring.func_overload în configurația PHP. Această opțiune nu " "este compatibilă cu phpMyAdmin și poate duce la pierderea unor date!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6993,7 +7011,7 @@ msgstr "" "charactere multi-octet. Fără extensia mbstring, phpMyAdmin nu poate diviza " "șirurile corect și aceasta poate duce la rezultate neașteptate." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7001,20 +7019,20 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Fișierul de configurare necesită o expresie de protecție secretă " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7023,14 +7041,14 @@ msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce ... %shere%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7040,7 +7058,7 @@ msgstr "" "%s a serverului dumneavoastră MySQL. Această diferență poate cauza " "comportamente imprevizibile." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7385,118 +7403,118 @@ msgstr "Motoare de stocare" msgid "View dump (schema) of databases" msgstr "Vizualizarea schemei bazei de date" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Include toate privilegiile, excluzand GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Permite alterarea structurii la tabelele deja existente." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Permite alterarea și aruncarea rutinelor stocate." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Permite crearea de noi baze de date și tabele." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Permite crearea rutinelor stocate." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Permite crearea de noi tabele." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Permite crearea de tabele temporare." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Permite crearea noilor viziuni." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Permite stergere de date." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Permite stergerea unei baze de date sau a unor tabele." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Permite aruncarea a unei baze de date." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Permite executarea rutinelor stocate." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Permite importarea datelor in fisiere și exportarea acestora din fisiere." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor " "de drepturi." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Permite crearea și stergerea indexurilor." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Permite inserarea și înlocuirea datelor." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Permite blocarea tabelelor din firul curent de execuție." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limitează numărul de noi conexiuni care pot fi deschise de utilizator într-o " "oră." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limiteaza numarul de comenzi care pot fi trimise de utilizator către server " "într-o oră." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7504,61 +7522,61 @@ msgstr "" "Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei " "baze de date executabile de utilizator într-o oră." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nu are efect în această versiune MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite reîncărcarea setărilor de server și golirea memoriei cache a " "serverului." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite utilizatorului de a interoga locația slave/master." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Necesară pentru „slave replication”." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Permite citirea datelor." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Permite accesul la lista completă a bazelor de date." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite executarea interogărilor SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Permite oprirea serverului." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7568,161 +7586,161 @@ msgstr "" "pentru majoritatea operațiunilor administrative, cum ar fi setarea " "variabilelor globale sau oprirea firelor de execuție a altor utilizatori." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Permite crearea și eliminarea declanșatorilor" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Permite schimbarea datelor." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Fără drepturi." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nici unul(a)" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Important: numele drepturilor de acces MySQL apar în engleză" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Privilegii globale" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrare" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limitare de resurse" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Observație: Prin stabilirea acestor opțiuni la 0 (zero) se elimină " "restricția." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informații de autentificare" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nu schimbați parola" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nu s-a găsit nici un utilizator." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Ați actualizat privilegiile pentru %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Drepturile tale au fost revocate pentru %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Parola pentru %s a fost schimbată cu succes." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Șterge %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nici un utilizator ales pentru ștergere!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reîncărcarea drepturilor" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Editează drepturile de acces" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Revocare" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Oricare" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Descriere utilizator" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Permite" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Adaugă un utilizator nou" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Eliminarea utilizatorilor selectați" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " "acestora." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Aruncă baza de date care are același nume ca utilizatorul." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7735,94 +7753,94 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Drepturi specifice coloanei" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Adaugă drepturi la baza de date următoare" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Metacaracterele _ și % trebuiesc însoțite de \\ pentru a le aplica" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Adaugă drepturi la următorul tabel" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Creează un utilizator nou cu aceleași privilegii și..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... menține cel vechi." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... șterge cel vechi din tabelul de utilizatori." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ...revocă toate privilegiile active de la utilizatorul vechi și șterge-l " "după aceea." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Bază de date pentru utilizatorul" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nici unul(a)" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Creează o bază de date cu același nume și acordă toate privilegiile" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verifică privilegiile pentru baza de date "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Utilizatorul are acces la "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "specific bazei de date" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "Metacaracter" @@ -8829,7 +8847,7 @@ msgstr "Comprimă conexiunea la serverul MySQL" msgid "Could not connect to the target" msgstr "Comprimă conexiunea la serverul MySQL" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9245,12 +9263,12 @@ msgstr "Afișare interogare SQL" msgid "Validated SQL" msgstr "Validează SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etichetă" @@ -9259,75 +9277,75 @@ msgstr "Etichetă" msgid "Table %1$s has been altered successfully" msgstr "Tabelul %1$s a fost alterat cu succes" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Caută printre valori necunoscute" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funcție" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "" "Datorită lungimii sale,
acest cîmp s-ar putea să nu fie editabil" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binar - a nu se edita" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "și apoi" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Revenire" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Editează rîndul următor" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți " "pentru a merge în oricare direcție" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9438,12 +9456,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tabelul %s există deja!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Tabelul %1$s a fost creat." @@ -9937,11 +9955,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Descriere" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profilul a fost actualizat." diff --git a/po/ru.po b/po/ru.po index 91eb79cd8b..c156862294 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-22 02:27+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: russian \n" @@ -16,7 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Показать все" @@ -39,17 +39,20 @@ msgstr "" "родительское окно или ваш браузер блокирует межоконные обновления из-за " "настроек безопасности" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Поиск" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "Поиск" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -125,7 +128,7 @@ msgid "Database comment: " msgstr "Комментарий к базе данных:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Комментарий к таблице" @@ -136,7 +139,7 @@ msgstr "Комментарий к таблице" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -151,8 +154,8 @@ msgstr "Названия столбцов" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -164,13 +167,13 @@ msgstr "Тип" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -189,8 +192,8 @@ msgid "Links to" msgstr "Связи" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -206,10 +209,10 @@ msgstr "Комментарии" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Нет" @@ -225,10 +228,10 @@ msgstr "Нет" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgstr "Выделить все" msgid "Unselect All" msgstr "Снять выделение" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Не указано имя базы данных!" @@ -269,81 +272,81 @@ msgstr "База данных `%s` переименована в `%s`." msgid "Database %s has been copied to %s" msgstr "База данных %s была скопирована в %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Переименовать базу данных в" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Команда" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Переименовать базу данных в" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "База данных %s была удалена." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Перейти к базе данных" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Скопировать базу данных в" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Только структура" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структура и данные" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Только данные" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Перед копированием создать базу данных (CREATE DATABASE)" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Добавить %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Добавить ограничения" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Переключиться на скопированную базу данных" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Сравнение" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -355,24 +358,24 @@ msgstr "" "Дополнительные возможности для работы со связанными таблицами недоступны. " "Для определения причины нажмите %sздесь%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Cхема связей" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Таблица " #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -383,33 +386,33 @@ msgstr "Строки" msgid "Size" msgstr "Размер" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "используется" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Создание" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Последнее обновление" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Последняя проверка" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -419,7 +422,7 @@ msgstr[1] "Таблиц: %s" msgstr[2] "Таблиц: %s" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -450,7 +453,7 @@ msgid "Descending" msgstr "По убыванию" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Показать" @@ -471,8 +474,8 @@ msgid "Del" msgstr "Удалить" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Или" @@ -546,17 +549,19 @@ msgstr[0] "%s вхождения(ий) в таблице %s" msgstr[1] "%s вхождения(ий) в таблице %s" msgstr[2] "%s вхождения(ий) в таблице %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Обзор" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -602,69 +607,30 @@ msgstr "В таблице/таблицах:" msgid "Inside column:" msgstr "Внутри поля:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Вставить" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Структура" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Удалить" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Очистить" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Таблица %s была очищена" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Представление %s было удалено" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Таблица %s была удалена" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Слежение включено." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Слежение выключено." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -673,87 +639,111 @@ msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Представление" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Репликация" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Всего" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "С отмеченными:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Отметить все" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Снять выделение" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Экспорт" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Очистить" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Удалить" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Проверить таблицу" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Оптимизировать таблицу" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Восстановить таблицу" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Анализ таблицы" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Словарь данных" @@ -761,13 +751,13 @@ msgstr "Словарь данных" msgid "Tracked tables" msgstr "Отслеживаемые таблицы" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -793,8 +783,8 @@ msgstr "Состояние" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Действие" @@ -837,12 +827,12 @@ msgstr "Отслеживать таблицу" msgid "Database Log" msgstr "Журнал базы данных" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -923,7 +913,7 @@ msgstr "Закладка удалена." msgid "Showing bookmark" msgstr "Отображение закладки" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Закладка "%s" создана" @@ -952,7 +942,7 @@ msgstr "" "пока не будет увеличено ограничение времени выполнения php-сценариев." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Назад" @@ -1032,11 +1022,11 @@ msgstr "Пустое имя хоста!" msgid "The user name is empty!" msgstr "Не задано имя пользователя!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Пароль не задан!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" @@ -1143,116 +1133,124 @@ msgid "Searching" msgstr "Поиск" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL Запрос" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL Запрос" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Типы таблиц" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Изменения сохранены" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Связь удалена" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Добавлена связь на внешний ключ (FOREIGN KEY)" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Добавлена внутренняя связь" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Ошибка: Связь не добавлена." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Ошибка: Связь уже существует." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Ошибка сохранения координат." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Основные возможности связей" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Недоступно" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Выберите ссылочный ключ" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Выберите внешний ключ" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" "Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) " "индексом!" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Выбор отображаемого столбца" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Создать пароль" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генерировать" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Изменить пароль" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пн" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Пожертвование" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Назад" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1260,96 +1258,96 @@ msgid "Next" msgstr "Следующий" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Всего" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двоичный" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Май" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1357,178 +1355,178 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Дек" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Вс" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пн" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вт" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пт" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Вс" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Вики" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "используется" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1606,9 +1604,9 @@ msgid "Comment" msgstr "Комментарий" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Изменить" @@ -1629,15 +1627,15 @@ msgid "" "removed." msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Базы данных" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Ошибка" @@ -1886,6 +1884,32 @@ msgstr "Загрузить файл" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Вставить" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Структура" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1957,7 +1981,7 @@ msgstr "" "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "конфигурационном файле phpMyAdmin." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Сервер" @@ -2014,7 +2038,7 @@ msgstr "Ответ MySQL: " msgid "Failed to connect to SQL validator!" msgstr "Невозможно соединиться с сервером MySQL" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Анализ запроса" @@ -2026,11 +2050,11 @@ msgstr "Убрать анализ" msgid "Without PHP Code" msgstr "Убрать PHP-код" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Обновить" @@ -2039,7 +2063,7 @@ msgstr "Обновить" msgid "Skip Validate SQL" msgstr "Убрать проверку синтаксиса SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Проверка синтаксиса" @@ -2140,7 +2164,7 @@ msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2164,14 +2188,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Из каталога загрузки" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "структура" @@ -2302,7 +2326,7 @@ msgid "Set value: %s" msgstr "Установить значение: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Восстановить изначальное значение" @@ -2312,15 +2336,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Сохранить" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Сбросить" @@ -2461,115 +2485,111 @@ msgid "Confirm DROP queries" msgstr "Подтверждать DROP запросы" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Параметры отображения списка баз данных" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Вкладка отображаемая при выборе базы данных" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Вкладка по умолчанию для базы данных" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Вкладка отображаемая при входе на сервер" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Вкладка по умолчанию для сервера" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Вкладка отображаемая при выборе таблицы" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Вкладка по умолчанию для таблицы" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Показывать бинарные данные в виде HEX значений" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Показывать бинарные данные в виде HEX значений" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" "Выводить базы данных в виде последовательного списка вместо выпадающего" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Отображать базы данных списком" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" "Выводить доступные для выбора серверы в виде последовательного списка вместо " "выпадающего" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Выводить серверы списком" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Редактировать следующую строку" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Показать возможности" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Игнорировать ошибки" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Игнорировать ошибки" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2577,32 +2597,32 @@ msgstr "" "Установите максимальное количество секунд, в течении которых скрипт может " "работать ([kbd]0[/kbd] без ограничения)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Максимальное время выполнения" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Сохранить как файл" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Кодировка файла" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Упаковать" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2612,70 +2632,70 @@ msgstr "Упаковать" msgid "Put columns names in the first row" msgstr "Поместить названия полей в первой строке" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Значения полей обрамлены" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Символ экранирования" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Заменить NULL на" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Удалите из полей символы CRLF" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Разделитель строк" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Разделитель строк" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-версия" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Шаблон имени базы данных" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Шаблон имени сервера" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Шаблон имени таблицы" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2683,120 +2703,120 @@ msgstr "Шаблон имени таблицы" msgid "Dump table" msgstr "Таблиц: %s" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Добавить заголовок таблицы" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Заголовок таблицы" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Заголовок таблицы (продолжение)" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Идентификатор метки" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-тип" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Связи" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тип экспорта" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Сохранить на сервере" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Перезаписать существующий(е) файл(ы)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Запомнить шаблон имени файла" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Заключить названия таблиц и полей в косые кавычки" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Режим совместимости SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Даты создания, обновления и проверки" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Использовать отложенные вставки (DELAYED)" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Отключить проверку внешних ключей" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Использовать шестнадцатеричное отображение для полей типа BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Использовать игнорирующие вставки (IGNORE)" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Максимальная длина создаваемого запроса" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Экспортировать таблицы" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Заключить экспорт в транзакцию" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy #| msgid "Export contents" msgid "Export time in UTC" msgstr "Экспортировать содержимое" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" "При использовании phpMyAdmin предпочитать использование безопасного " "соединения" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Предпочитать SSL соединение" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2804,192 +2824,192 @@ msgstr "" "Порядок сортировки значений в списке внешних ключей. [kbd]content[/kbd] - " "ссылочные данные, [kbd]id[/kbd] - значение ключа" -#: libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Сортировка внешних ключей" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" "Если значений меньше указанного, то они будут выведены в виде выпадающего " "списка" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Лимит внешних ключей" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Обзор" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Настройка режима обзора данных" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Настройте параметры экспорта используемые по умолчанию" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Редакция" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Настройка режима редакции данных" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Экспорт" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Настройте параметры экспорта используемые по умолчанию" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Настройки" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Генерировать" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Импорт" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Импорт" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Настройте параметры импорта используемые по умолчанию" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Импорт / экспорт" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Установите директории импорта и экспорта, а так же параметры архивации" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Параметры отображения списка баз данных" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Фрейм навигации" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Настройки отображения фрейма навигации" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Сервера" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Параметры отображения списка серверов" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Таблицы" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Параметры отображения списка таблиц" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Основной фрейм" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "OpenDocument текст" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Другие настройки ядра" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Настройки не попадающие в другие разделы" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Номер страницы:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Окно запроса" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Настройте параметры окна запросов" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Безопасность" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2997,27 +3017,27 @@ msgstr "" "Пожалуйста, обратите внимание, что phpMyAdmin - это только веб-интерфейс и " "его настройки не ограничивают доступ к самой MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Основные настройки" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Тип идентификации" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Тип идентификации" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Параметры сервера" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3025,17 +3045,17 @@ msgstr "" "Расширенное управление сервером. Не изменяйте данные параметры без " "достаточного понимания их назначения." -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Введите параметры соединения сервера" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Конфигурационный файл" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3050,56 +3070,56 @@ msgstr "" "Смотрите в документации раздел описывающий [a@../Documentation.html#linked-" "tables]инфраструктуру связанных таблиц[/a]" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Модифицировать параметры экспорта" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Модифицировать изначальлные настройки импорта" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Модифицировать фрейм навигации" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Модифицировать основной фрейм" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL запросы" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL Запрос" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Настройте ссылки выводимые в блоке SQL запросов" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL запросы" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "История SQL-запросов" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3107,49 +3127,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Главная" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Настройка отображения главной страницы" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Вкладки" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Настройте отображение вкладок" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Использовать текстовое поле" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Модифицировать параметры экспорта" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! текст" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Предупреждение" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3157,15 +3177,15 @@ msgstr "" "Включить [a@http://ru.wikipedia.org/wiki/Gzip]gzip[/a] архивирование для " "операций импорта и экспорта" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Добавочные параметры iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3173,11 +3193,11 @@ msgstr "" "В случае включения данного параметра, phpMyAdmin продолжит выполнение " "составного запроса, даже если одно из выражений вернет ошибку" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Игнорировать ошибки составных запросов" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3187,21 +3207,21 @@ msgstr "" "временного лимита на выполнение скрипта. Может помочь при импорте файлов " "большого размера, однако небезопасно для транзакций." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Частичный импорт: разрешает прерывание" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Игнорировать повторяющиеся строки" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Заместить данные таблицы данными из файла" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3209,98 +3229,98 @@ msgstr "" "Формат по умолчанию; обратите внимание, что список форматов зависит от " "положения (база данных, таблица) и только SQL доступен в любом случае" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Формат импортируемого файла" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Использовать ключевое слово LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Имена таблиц в первой строке" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Пропускать пустые строки" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, 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:253 +#: libraries/config/messages.inc.php:252 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Импортировать проценты в виде десятичных значений (12.00% в .12)" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Количество запросов пропускаемых от начала импорта" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Частичный импорт: пропуск запросов" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Количество строк при вставке за один раз" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Количество строк при вставке" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Цель иконки быстрого доступа" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Отображать логотип в левом фрейме" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Выводить логотип" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Отображать вверху левого фрейма список доступных серверов" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Отображать выбор сервера" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Отображать базы данных в виде дерева" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "Строка разделяющая базы данных на различные уровни дерева" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Разделитель дерева баз данных" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3308,39 +3328,39 @@ msgstr "" "Только в облегченном варианте; отображать базы данных в виде дерева " "(определяется указанием разделителя ниже)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Отображать базы данных в виде дерева" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Отключите данную функцию, если хотите видеть все базы данных сразу" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Облегченный вариант" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Максимальная глубина дерева таблиц" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Строка разделяющая таблицы на различные уровни дерева" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Разделитель дерева таблиц" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "URL ссылка логотипа" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3348,27 +3368,27 @@ msgstr "" "Открывать ссылку в основном окне ([kbd]main[/kbd]) или в новом ([kbd]new[/" "kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Цель ссылки логотипа" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Подсвечивать сервер при наведении курсора" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Включить подсветку" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Выводить вкладки менее насыщенные графическими элементами" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Облегченные вкладки" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" @@ -3376,11 +3396,11 @@ msgid "" msgstr "" "Максимальное количество символов используемых при отображении SQL запроса" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3391,11 +3411,11 @@ msgstr "" "значения в FALSE можно легко забыть отключиться от других серверов при " "множественном подключении." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Удалить все cookies при выходе" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3403,11 +3423,11 @@ msgstr "" "Определяет необходимость выводить имя пользователя от предыдущего " "подключения при использовании cookie идентификации" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Выводить имя пользователя" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3420,55 +3440,55 @@ msgstr "" "закрытия окна браузера. Хранение в течении сессии рекомендуется для " "использования в недружественном окружении." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Хранение cookie" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Определяет длительность (в секундах) действия cookie идентификации" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Срок действия cookie" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "Максимальное количество символов используемых при отображении SQL запроса" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Максимальная длинна отображаемого SQL" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Максимальное количество баз данных отображаемых в левом фрейме и списке баз " "данных" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Максимальное количество баз данных" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3477,29 +3497,29 @@ msgstr "" "Количество строк при выводе результата запроса. Если строк больше, то будут " "выведены ссылки перелистывания страниц." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Максимальное количество строк" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Максимальное количество таблиц отображаемых в списке" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Максимальное количество таблиц" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3507,48 +3527,48 @@ msgstr "" "Максимальное количество байт, которые могут быть выделены скрипту. Пример: " "[kbd]32M[/kbd] ([kbd]0[/kbd] без ограничений)" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Лимит памяти" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Показать/скрыть левое меню" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Изменить сортировку таблицы" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Использовать только иконки, только текст, или все вместе" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Иконки в строке навигации" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Используйте буферизацию вывода GZip для увеличения передачи данных по HTTP" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "Буферизация вывода GZip" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3560,46 +3580,46 @@ msgstr "" "[kbd]SMART[/kbd] - означает обратный порядок для полей имеющих тип TIME, " "DATE, DATETIME и TIMESTAMP; в ином случае порядок будет прямой" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Порядок сортировки" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Использовать постоянные соединения с базами данных MySQL" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Постоянные соединения" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Иконки операций над таблицами" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, 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:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Защитить бинарные данные" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3613,121 +3633,121 @@ msgstr "" "pmadb). При отключении, для истории запросов используется JS (история " "теряется при закрытии окна)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Постоянная история запросов" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Количество запросов хранимых в истории" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Длинна истории запросов" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" "Вкладка отображаемая при открытии нового всплывающего окна выполнения " "запросов" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Вкладка по умолчанию для окна запросов" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Окно запроса" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Окно запроса" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Окно запроса" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "Выберите функцию, которая будет использоваться при перекодировании" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Механизм перекодирования" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Потоков восстановления" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Каталог на сервере, в который можно сохранять файлы при экспорте" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Каталог сохранения" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Оставьте поле пустым, если не используете данную функцию" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Порядок хостов для идентификации" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Оставьте поле пустым для использования значения по умолчанию" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Правила хостов для идентификации" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Разрешать подключения без пароля" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Разрешить вход под root" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3737,19 +3757,19 @@ msgstr "" "идентификации SweKey[/a] (пример, если располагается ниже корня хоста: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "Конфигурационный файл SweKey" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Используемый метод идентификации" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Тип идентификации" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3757,11 +3777,11 @@ msgstr "" "Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/bookmark]закладок" "[/a] оставьте поле пустым. Рекомендуется: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Таблица закладок" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3769,31 +3789,31 @@ msgstr "" "Для отключения поддержки комментариев/mime-типов полей оставьте поле пустым. " "Рекомендуется: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Таблица информации полей" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Соединение с сервером MySQL с использованием сжатия данных" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Соединение со сжатием" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Способ соединения с сервером. Если не уверены, оставьте [kbd]tcp[/kbd]" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Тип соединения" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Пароль выделенного пользователя" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3801,19 +3821,19 @@ msgstr "" "Специальный пользователь MySQL с ограниченными привилегиями. Подробнее " "смотрите на [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Выделенный пользователь" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "При выводе баз данных показывать количество таблиц в них" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Подсчитывать таблицы" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3821,11 +3841,11 @@ msgstr "" "Для отключения поддержки Дизайнера Связей оставьте поле пустым. " "Рекомендуется: [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Таблица Дизайнера" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3833,29 +3853,29 @@ 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:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Отключить использование INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Выберите какое расширение PHP использовать для работы с MySQL. При " "возможности, используйте mysqli." -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "PHP расширение" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Скрыть базы данных подпадающие под регулярное выражение (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Скрыть базы данных" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3863,33 +3883,33 @@ msgstr "" "Для отключения поддержки истории SQL запросов оставьте поле пустым. " "Рекомендуется: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "Таблица истории SQL запросов" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Хост на котором работает сервер MySQL" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Хост сервера" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "URL выхода" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" "Пытаться установить соединение без пароля, если пароль не был принят при " "идентификации" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Соединять без пароля" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3905,30 +3925,30 @@ msgstr "" "хотите использовать, как обычные литературные символы, т.е. используйте 'my" "\\_db' а не 'my_db'" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Показывать только базы данных из списка" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Если не используется идентификация config, оставьте поле пустым" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Прописанный пароль" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 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:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF схема: страницы таблицы" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3939,23 +3959,23 @@ msgstr "" "pmadb[/a]. Для отключения поддержки, оставьте поле пустым. Рекомендуется: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "имя базы данных" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Порт на котором работает сервер MySQL. Для значения по умолчанию, оставьте " "пустым." -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Порт сервера" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3964,19 +3984,19 @@ msgstr "" "связанных таблиц[/a] оставьте поле пустым. Рекомендуется: [kbd]pma_relation[/" "kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Таблица связей" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "SQL команда для выборки доступных баз данных" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "Команда SHOW DATABASES" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3984,44 +4004,44 @@ msgstr "" "Для примера смотрите раздел [a@http://wiki.phpmyadmin.net/pma/" "auth_types#signon]типы идентификации[/a]" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Имя сессии для Signon" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Сокет на котором работает сервер MySQL. Для значения по умолчанию, оставьте " "пустым." -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Сокет сервера" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Использовать SSL для соединения с MySQL" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Использовать SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 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:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF схема: координаты таблиц" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4033,53 +4053,53 @@ msgstr "" "Таблица для описания отображаемого поля. Для отключения поддержки данной " "функции оставьте поле пустым. Рекомендуется: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Таблица отображения полей" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Характеристика" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4091,25 +4111,25 @@ msgstr "" "Для отключения поддержки истории SQL запросов оставьте поле пустым. " "Рекомендуется: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "Таблица истории SQL запросов" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Режим автоматического восстановления" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4121,15 +4141,15 @@ msgstr "" "Для отключения поддержки истории SQL запросов оставьте поле пустым. " "Рекомендуется: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Прописанный пользователь" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4138,11 +4158,11 @@ msgstr "" "нуждаются в обновлении. Это предотвратит лишние проверки совместимости и " "соответственно увеличит производительность." -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Повторная проверка" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4150,22 +4170,22 @@ msgstr "" "Пользовательское описание сервера. Оставьте пустым, чтобы вывести название " "хоста." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Пользовательское имя сервера" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether 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:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Разрешать вывод всех строк" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4176,35 +4196,35 @@ msgstr "" "прописанного пароля. Смена пароля в конфигурационном файле напрямую никак не " "ограничена." -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Вывести форму изменения пароля" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Вывести форму создания базы данных" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Список открытых таблиц" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Выводить поля функций в режиме редактирования или вставки" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Выводить поля функций" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4212,33 +4232,33 @@ msgstr "" "Вывести ссылку для отображения [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Вывести ссылку на phpinfo()" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Вывести подробную информацию по MySQL серверу" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Определяет вывод SQL запросов генерируемых phpMyAdmin" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Показывать SQL запросы" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Разрешить вывод статистики по базам данных и таблицам (например, объем " "занятого пространства)" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Показывать статистику" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4246,11 +4266,11 @@ msgstr "" "Если включен вывод всплывающих подсказок и установлен вывод комментария, " "произойдет взаимная замена комментария и имени базы данных" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Выводить вместо имени базы данных ее комментарий" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4261,61 +4281,61 @@ msgstr "" "корневого значения, разделенных указанной в директиве $cfg" "['LeftFrameTableSeparator'] строкой, таблиц." -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Комментарий таблицы вместо имени" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Комментарии таблицы во всплывающих подсказках" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Отмечать использованные таблицы и делать возможным отображение баз данных с " "заблокированными таблицами" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Пропускать заблокированные таблицы" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Пароль" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Пользователь" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4323,65 +4343,65 @@ msgstr "" "Предлагать имя создаваемой базы данных при наличии такой возможности, или " "сохранение поля пустым" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Предлагать имя новой базы данных" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "Ширина textarea для CHAR" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "Высота textarea для CHAR" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Вкладка по умолчанию для таблицы" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4393,39 +4413,39 @@ msgstr "" "Forwarded-For) заголовку пришедшему с прокси 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "Список доверенных прокси для IP allow/deny" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" "Каталог на сервере, в который вы можете загружать файлы для последующего " "импорта" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Каталог загрузки" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Разрешить поиск по всей базе данных" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Использовать поиск по базе данных" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4435,15 +4455,15 @@ msgstr "" "запросах. Для определения количества выражений в сложносоставном запросе " "смотрите libraries/import.lib.php." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Комментировать составные запросы" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Проверить обновление" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4451,7 +4471,7 @@ msgstr "" "Включить [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " "архивирование для операций импорта и экспорта" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4480,74 +4500,74 @@ msgid "Signon authentication" msgstr "Порядок хостов для идентификации" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV, используя LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Выбрать цвет" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Параметры экспорта базы данных" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Данные" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV для MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenDocument текст" @@ -4594,7 +4614,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "События" @@ -4623,8 +4643,8 @@ msgid "Designer" msgstr "Дизайнер" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Привилегии" @@ -4636,7 +4656,7 @@ msgstr "Процедуры" msgid "Return type" msgstr "Возвращаемый тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4668,18 +4688,18 @@ msgid "Details..." msgstr "Детали..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Изменить пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Подтверждение" @@ -4702,8 +4722,8 @@ msgstr "Новая база данных" msgid "Create" msgstr "Создать" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Нет привилегий" @@ -4851,8 +4871,8 @@ msgid "Compression:" msgstr "Упаковать" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Нет" @@ -5030,7 +5050,7 @@ msgstr "Сортировать по индексу" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5065,8 +5085,8 @@ msgstr "Показать бинарные данные" msgid "Show BLOB contents" msgstr "Показать BLOB содержимое" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Скрыть" @@ -5084,49 +5104,49 @@ msgstr "Выполнить отмеченный запрос" msgid "The row has been deleted" msgstr "Запись была удалена" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Завершить" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "по запросу" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Отображает строки" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "всего" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "запрос занял %01.4f сек." -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Изменить" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Версия для печати (полностью)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Показать PDF-схему" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Связь не найдена" @@ -5610,12 +5630,12 @@ msgid "Data dump options" msgstr "Параметры отображения списка баз данных" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Дамп данных таблицы" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Структура таблицы" @@ -5668,9 +5688,9 @@ msgstr "Доступные MIME-типы" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -5816,40 +5836,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Процедуры" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Функции" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Ограничения внешнего ключа сохраненных таблиц" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Ограничения внешнего ключа таблицы" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПЫ ТАБЛИЦЫ" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "Связи таблицы" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Триггеры" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Структура для представления" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Дублирующая структура для представления" @@ -5884,42 +5904,42 @@ msgstr "Результат SQL-запроса" msgid "Generated by" msgstr "Создан" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Просмотреть детали структуры нажав на её имя" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Изменить любой параметр нажав на соответствующую ссылку Параметр" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Отредактировать структуру перейдя по ссылке Структура" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Перейти к базе данных" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "настройки" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Перейти к таблице" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Перейти к отображению (VIEW)" @@ -5971,7 +5991,7 @@ msgstr "Неправильное количество полей во входн msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Имя таблицы" @@ -6058,7 +6078,7 @@ msgid "Charset" msgstr "Кодировка" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Двоичный" @@ -6345,8 +6365,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Имя пользователя" @@ -6365,7 +6385,7 @@ msgid "Variable" msgstr "Переменная" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Значение" @@ -6386,34 +6406,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Добавьте подчиненного пользователя репликации" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Любой пользователь" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Использовать текстовое поле" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Любой хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Локальный" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Этот хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Использовать таблицу хостов" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6669,11 +6689,11 @@ msgstr "Выполнить SQL-запрос(ы) к базе данных %s" msgid "Columns" msgstr "Названия столбцов" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" @@ -6705,7 +6725,7 @@ msgstr "Просмотр" msgid "Location of the text file" msgstr "Выбор файла" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Из каталога загрузки" @@ -6872,22 +6892,22 @@ msgstr "" "На данный момент описание отсутствует.
Работа используемой функции " "отображения преобразования %s, будет в скором времени описана." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Тип таблиц" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Определение разделов (PARTITION)" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Добавить поле(я)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7143,8 +7163,8 @@ msgstr "настройки" msgid "Protocol version" msgstr "Версия протокола" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Пользователь" @@ -7181,7 +7201,7 @@ msgstr "Официальная страница phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7194,7 +7214,7 @@ msgstr "" "несанкционированного доступа, поэтому настоятельно рекомендуется установить " "пароль для пользователя "root"." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7204,7 +7224,7 @@ msgstr "" "func_overload. Для предотвращения возможной потери данных, данный параметр " "должен быть выключен!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7215,7 +7235,7 @@ msgstr "" "разбиение строк, что может привести к непредсказуемым результатам. " "Установите расширение PHP "mbstring"." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7227,13 +7247,13 @@ msgstr "" "cookie определенная в phpMyAdmin, по этой причине, данные входа истекут " "быстрее установленных." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "При cookie-аутентификации, в конфигурационном файле необходимо задать " "парольную фразу установив значение директивы $cfg['blowfish_secret']." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7243,7 +7263,7 @@ msgstr "" "находится в установочной директории phpMyAdmin. Обязательно удалите его " "сразу после настройки phpMyAdmin." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7252,14 +7272,14 @@ msgstr "" "Дополнительные возможности для работы со связанными таблицами недоступны. " "Для определения причины нажмите %sздесь%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7268,7 +7288,7 @@ msgstr "" "Версия клиентской библиотеки MySQL (%s) отличается от версии установленного " "MySQL-сервера (%s). Это может привести к некорректной работе." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7621,118 +7641,118 @@ msgstr "Типы таблиц" msgid "View dump (schema) of databases" msgstr "Отобразить дамп (схему) баз данных" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Содержит все привилегии, за исключением GRANT" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Разрешает изменение структуры существующих таблиц" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Разрешает изменение и удаление хранимых процедур" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Разрешает создание новых баз данных и таблиц" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Разрешает создание хранимых процедур" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Разрешает создание новых таблиц" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Разрешает создание временных таблиц" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Разрешает создание, удаление и переименование учетных записей пользователей" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Разрешает создание новых представлений (CREATE VIEW)" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Разрешает удаление данных" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Разрешает удаление баз данных и таблиц" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Разрешает удаление таблиц" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Разрешает настройку отложенных событий" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Разрешает выполнение хранимых процедур" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Разрешает импорт и экспорт данных в файлы" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Разрешает добавление пользователей и привилегий без перезагрузки таблиц " "привилегий" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Разрешает создание и удаление индексов" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Разрешает вставку и замену данных" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Разрешает блокировку таблиц для текущего потока" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Максимальное количество новых подключений, которые пользователь может " "установить в течение часа" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Максимальное количество запросов, которые пользователь может отправить в " "течение часа" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7740,58 +7760,58 @@ msgstr "" "Максимальное количество команд изменяющих какую-либо таблицу или базу " "данных, которые пользователь может выполнить в течение часа" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Максимальное количество одновременных подключений одного пользователя" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Разрешает просмотр процессов всех пользователей" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Не доступно в данной версии MySQL!" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Разрешает запрашивать местонахождение головного и подчиненных серверов" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Необходимо для подчиненных серверов при репликации" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Разрешает выборку данных" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Разрешает доступ к полному списку баз данных" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Разрешает остановку сервера" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7802,158 +7822,158 @@ msgstr "" "установка глобальных переменных или завершение процессов других " "пользователей)" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Разрешает создание и удаление триггеров" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Разрешает изменение данных" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Нет привилегий" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Нет" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr " Привилегии уровня таблицы" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "Примечание: типы привилегий MySQL отображаются по-английски." -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Глобальные привилегии" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Администрирование" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ограничение на использование ресурсов" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Замечание: Установка значения параметров в 0 (ноль), снимает ограничения." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Информация учетной записи" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Не менять пароль" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Пользователей не найдено." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Пользователь %s уже существует!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Был добавлен новый пользователь." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Были изменены привилегии для %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Отменены привилегии для %s." -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s был успешно изменен." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Удаление %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Не выбраны пользователи подлежащие удалению!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Перезагрузка привилегий" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Выбранные пользователи были успешно удалены." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Редактирование привилегий" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Отменить" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Любой" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Обзор учетных записей" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Добавить нового пользователя" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Удалить выделенных пользователей" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отменить все активные привилегии пользователей и затем удалить их." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7966,98 +7986,98 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В таком случае необходимо %sперезагрузить привилегии%s." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Выделенный пользователь не был найден в таблице привилегий." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Привилегии уровня столбца" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Добавить привилегии на следующую базу" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "При использовании в имени базы данных символов нижнего подчеркивания (_) и " "процента (%), необходимо экранировать их символом обратной косой черты (\\), " "в противном случае они будут интерпретированы как групповые символы" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr " Добавить привилегии на следующую таблицу" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Изменить/Копировать учетную запись" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Создать нового пользователя с такими же привилегиями..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "и сохранить старого." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "и удалить старого из таблиц пользователей." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", отменить все активные привилегии старого и затем удалить его." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "База данных для пользователя" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Нет" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" "Создать базу данных с именем пользователя в названии и предоставить на нее " "полные привилегии" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Предоставить полные привилегии на базы данных подпадающие под шаблон (имя " "пользователя\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Выставить полные привилегии на базу данных "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Пользователи с правами доступа к "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "Глобальный уровень" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Уровень базы данных" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "Групповой символ" @@ -9119,7 +9139,7 @@ msgstr "Не получилось соединиться с источником msgid "Could not connect to the target" msgstr "Не получилось соединиться с целевой базой данных" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9645,12 +9665,12 @@ msgstr "Отображает SQL-запрос" msgid "Validated SQL" msgstr "Проверка синтаксиса" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Метка" @@ -9659,74 +9679,74 @@ msgstr "Метка" msgid "Table %1$s has been altered successfully" msgstr "Таблица %1$s была успешно изменена" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Обзор внешних значений" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Функция" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "Из-за большого количества данных
изменение может быть затруднено" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Удалить ссылку хранилища BLOB данных" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Двоичные данные - не редактируются" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Загрузить в хранилище BLOB данных" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Вставить запись" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Отображает SQL-запрос" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "и затем" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Добавить новую запись" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9837,12 +9857,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Таблица %s уже существует!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Таблица %1$s была создана." @@ -10340,11 +10360,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Описание" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Для доступа к данной странице у вас недостаточно прав!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Профиль был обновлен." diff --git a/po/si.po b/po/si.po index cd1831e440..41d1f79cec 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-22 02:26+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: sinhala \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" @@ -38,17 +38,20 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "සෙවීම" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "සෙවීම" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "දත්තගබඩා විස්තර: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "වගු විස්තර" @@ -133,7 +136,7 @@ msgstr "වගු විස්තර" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -148,8 +151,8 @@ msgstr "තීර නම්" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "වර්ගය" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "Links to" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "විස්තරය" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "නැත" @@ -222,10 +225,10 @@ msgstr "නැත" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "සියල්ල තෝරන්න" msgid "Unselect All" msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න‍" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "දත්තගබඩා නම හිස්ව පවතී!" @@ -266,80 +269,80 @@ msgstr "%s දත්තගබඩාව %s බවට නම වෙනස් ක msgid "Database %s has been copied to %s" msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කරන ලදි" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "විධානය" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "%s දත්තගබඩාව හලන ලදි." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "දත්තගබඩා නොමැත" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "දත්ත පමණයි" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "පිටපත් කිරීමට ප්‍රථම දත්තගබඩාවක් සාදන්න" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "සීමා බාධවන් එක් කරන්න" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -351,24 +354,24 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relational schema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "වගුව" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -379,33 +382,33 @@ msgstr "පේළි" msgid "Size" msgstr "ප්‍රමාණය" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "භාවිතා වෙමින් පවතී" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "සෑදීම" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "අවසන් යාවත් කාලීන කිරීම" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "අවසන් පරීක්ෂාව" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -414,7 +417,7 @@ msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -444,7 +447,7 @@ msgid "Descending" msgstr "අවරෝහන" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "පෙන්වන්න" @@ -465,8 +468,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "හෝ" @@ -539,17 +542,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "බ්‍රවුස් කරන්න" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -594,156 +599,141 @@ msgstr "වගු(ව) තුල:" msgid "Inside column:" msgstr "වගු(ව) තුල:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "ඇතුල් කරන්න" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "සැකිල්ල" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "හලන්න" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "හිස්" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "%s වගුව හිස් කරන ලදි" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "%s වගුව හලන ලදි" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "දර්ශනය කරන්න" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replication" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "එකතුව" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "තෝරාගත්:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "අපනයනය" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "හිස්" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "හලන්න" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "ප්‍රශස්තගත වගුව" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "දත්ත කෝෂය" @@ -752,13 +742,13 @@ msgstr "දත්ත කෝෂය" msgid "Tracked tables" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -786,8 +776,8 @@ msgstr "තත්වය" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "ක්‍රියාව" @@ -835,12 +825,12 @@ msgstr "වගුව පරීක්ෂා කරන්න" msgid "Database Log" msgstr "දත්තගබඩාව" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -917,7 +907,7 @@ msgstr "පොත් සලකුණ ඉවත් කරන ලදි." msgid "Showing bookmark" msgstr "පොත් සලකුණ පෙන්වන්න" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "%s පොත් සලකුණ සාදන ලදි" @@ -944,7 +934,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "ආපසු" @@ -1024,11 +1014,11 @@ msgstr "දාරක නම හිස්ව පවතී!" msgid "The user name is empty!" msgstr "භාවිත නාමය හිස්ව පවතී!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" @@ -1132,115 +1122,121 @@ msgid "Searching" msgstr "සෙවීම" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL විමසුම" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL විමසුම" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "යන්ත්‍රයන්" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "අත්හැර දමන්න" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "වෙනස් කිරීම් සේව් කරන ලදි" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Internal relations" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "අක්‍රිය කරන ලද" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "පෙන්වීම සඳහා ක්ෂේත්‍රයක් ‍තෝරාගන්න" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "උත්පාදනය කරන්න" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "මුරපදය වෙනස් කරන්න" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "සදුදා" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "දත්ත" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "පෙර" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1248,96 +1244,96 @@ msgid "Next" msgstr "මීලඟ" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "මුළු එකතුව" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ද්වීමය" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "මාර්තු" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "අ‍ප්‍රේල්" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "මැයි" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ජූනි" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ජූලි" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "අගෝස්තු" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ඔක්තෝම්බර්" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1345,176 +1341,176 @@ msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "ජූනි" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "දෙසැම්බර්" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "ඉරිදා" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "සදුදා" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "අගහරු‍වදා" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "සිකුරාදා:" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "සදුදා" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "අගහරු‍වදා" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "බ්‍රහස්පතින්දා" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "සිකුරාදා:" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "සෙනසුරාදා" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "ඉරිදා" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "සදුදා" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "අගහරු‍වදා" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "බදාදා" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "බ්‍රහස්පතින්දා" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "සිකුරාදා:" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "සෙනසුරාදා" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "භාවිතා වෙමින් පවතී" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1590,9 +1586,9 @@ msgid "Comment" msgstr "විස්තරය" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "සංස්කරණය කරන්න" @@ -1613,15 +1609,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "දත්තගබඩා" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "දෝෂය" @@ -1868,6 +1864,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "ඇතුල් කරන්න" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "සැකිල්ල" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1936,7 +1958,7 @@ msgstr "Invalid server index: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "සර්වරය" @@ -1990,7 +2012,7 @@ msgstr "MySQL said: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL ය පහදන්න " @@ -2002,11 +2024,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "PHP කේත නොමැතිව" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "අලුත් කරන්න" @@ -2015,7 +2037,7 @@ msgstr "අලුත් කරන්න" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validate SQL" @@ -2115,7 +2137,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2139,14 +2161,14 @@ msgid "Select from the web server upload directory %s:" msgstr "අන්තර්ජාල සර්වරයේ අප්ලෝඩ් ඩිරෙක්ටරිය" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "සැකිල්ල" @@ -2276,7 +2298,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2286,15 +2308,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "සේව් කරන්න" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "ප්‍රතිසකසන්න" @@ -2416,140 +2438,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "මීලඟ පේළිය එක් කරන්න" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "දර්ශන ලක්ෂණ" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "ගොනුවක් ලෙස තෝරන්න" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "ගොනුවේ අක්ෂර කට්ටලය:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "ආකෘතිය" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Compression" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2559,71 +2577,71 @@ msgstr "Compression" msgid "Put columns names in the first row" msgstr "Put fields names in the first row" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Fields enclosed by" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Fields escaped by" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "එක්සෙල් සංස්කරණය" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "ෆයිල් නම් ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "ෆයිල් නම් ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "ෆයිල් නම් ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2631,410 +2649,410 @@ msgstr "ෆයිල් නම් ටෙම්ප්ලේටය" msgid "Dump table" msgstr "%s table(s)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "වගු ශිර්ෂ පාඨ ඇතුලත් කරන්න" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "වගු සිරස් තලය" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "ලේබල යතුර" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME වර්ගය" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "අපනයන වර්ගය" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "ෆයිල් නම් ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "සෑදීම/යාවත් කාලීන/පරීක්ෂා කිරීමේ දින" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "ප්‍රමාද කරන ලද ඇතුල් කිරීම භාවිතා කරන්න" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "අන්‍ය යතුරු පරීක්ෂා අක්‍රිය කරන්න" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "අපනයන වර්ගය" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "අපනයන වර්ගය" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "ගොනු ආනයනය" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "උත්පාදනය කරන්න" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "ආනයනය" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "ගොනු ආනයනය" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "සර්වරයන්" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "වගු" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 #, fuzzy msgid "Tables display options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "පිටු අංකය:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Query window" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "ලියකියවිලි" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Replication" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL විමසුම" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL විමසුම" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL විමසුම" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL ඉතිහාසය" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3042,72 +3060,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "තත්වය" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "වගුව" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Use text field" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3118,213 +3136,213 @@ msgstr "" "This might be good way to import large files, however it can break " "transactions." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignore duplicate rows" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Use LOCAL keyword" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, 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:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "The number of sorted rows." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "තීර විස්තර පෙන්වීම" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "ෆයිල් නම් ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "MySQL සේවාදායකයාගේ සංස්කරණය" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3332,433 +3350,433 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "දත්තගබඩා නොමැත" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "සම්පත් සීමා" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "අනුව වගු අනුපිළිවෙල වෙනස් කරන්න" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Query window" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Query window" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Query window" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Repair threads" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "දත්ත මුල් පිටුව" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "සම්බන්ධතා" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "වගු නොමැත" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "PHP සංස්කරණය" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "දත්තගබඩා නොමැත" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "සර්වරයේ නම" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3767,302 +3785,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "සර්වරයේ හැඳුනුම් අංකය" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "සර්වරයේ තේරීම" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "තීර විස්තර පෙන්වීම" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "ප්‍රකාශය" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatic recovery mode" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "විවෘත වගු පෙන්වන්න" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "පේළි සංඛ්‍ය ලේඛන" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4070,122 +4088,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "විවෘත වගු පෙන්වන්න" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "මුරපදය" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "භාවිත නාමය:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "ක්ෂේත්‍ර තීර එක් කරන්න/ඉවත් කරන්න" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4193,59 +4211,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "දත්ත මුල් පිටුව" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4266,72 +4284,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "දත්තගබඩා අපනයන විකල්ප" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "දත්ත" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS එක්සෙල් සඳහා CSV " #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "මෛක්‍රොසොෆ්ට් වර්ඩ් 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4370,7 +4388,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 #, fuzzy msgid "Events" msgstr "යවන ලද" @@ -4400,8 +4418,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "වරප්‍රසාද" @@ -4413,7 +4431,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4442,18 +4460,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "මුරපදය වෙනස් කරන්න" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "මුරපදයක් නැත" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "නැවත ටයිප් කරන්න" @@ -4476,8 +4494,8 @@ msgstr "නව දත්තගබඩාවක් සාදන්න" msgid "Create" msgstr "සාදන්න" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "වරප්‍රසාද නොමැත" @@ -4621,8 +4639,8 @@ msgid "Compression:" msgstr "Compression" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "කිසිවක් නැත" @@ -4794,7 +4812,7 @@ msgstr "යතුර අනුව තෝරන්න" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4831,8 +4849,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4850,49 +4868,49 @@ msgstr "Execute bookmarked query" msgid "The row has been deleted" msgstr "පෙළ ඉවත් කරන ලදි" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "පේළි පෙන්වන්න" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "මුළු එකතුව" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "වෙනස් කරන්න" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF නිරූපනය පෙන්වන්න" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Link not found" @@ -5333,12 +5351,12 @@ msgid "Data dump options" msgstr "දත්තගබඩා අපනයන විකල්ප" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "වගු සඳහා නික්ෂේප දත්ත" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "වගුවක් සඳහා වගු සැකිල්ල" @@ -5391,9 +5409,9 @@ msgstr "Available MIME types" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "දායකයා" @@ -5539,41 +5557,41 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "ක්‍රියාපටිපාටිය" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "ශ්‍රිත" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "වගුව සඳහා සීමා බාධක" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Structure only" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 #, fuzzy msgid "Stand-in structure for view" msgstr "Structure only" @@ -5610,44 +5628,44 @@ msgstr "SQL ප්‍රතිළුල" msgid "Generated by" msgstr "උත්පාදනය කරන ලද්දේ" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "දත්තගබඩා නොමැත" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "දත්තගබඩා නොමැත" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5699,7 +5717,7 @@ msgstr "Invalid field count in CSV input on line %d." msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 #, fuzzy msgid "Table name" @@ -5779,7 +5797,7 @@ msgid "Charset" msgstr "අක්ෂර කට්ටලය" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "ද්වීමය" @@ -6064,8 +6082,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "භාවිත නාමය" @@ -6086,7 +6104,7 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Value" @@ -6105,34 +6123,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "ඕනෑම භාවිතා කරන්නෙක්" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "ඕනෑම දායකයෙක්" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "ස්වදේශී" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "this host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "දායක වගුව භාවිතා කරන්න" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6388,11 +6406,11 @@ msgstr "Run SQL query/queries on database %s" msgid "Columns" msgstr "තීර නම්" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" @@ -6424,7 +6442,7 @@ msgstr "දර්ශනය කිරීම පමණි" msgid "Location of the text file" msgstr "පාඨ ගොනුවෙහි පිහිටුම" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "අන්තර්ජාල සර්වරයේ අප්ලෝඩ් ඩිරෙක්ටරිය" @@ -6591,22 +6609,22 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "ගබඩා යන්ත්‍ර‍" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ක්ෂේත්‍ර(යක්) එක් කරන්න" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6842,8 +6860,8 @@ msgstr "General relation features" msgid "Protocol version" msgstr "ප්‍රෝටකෝල සංස්කරණය" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "භාවිතා කරන්නා" @@ -6881,7 +6899,7 @@ msgstr "නිල phpMyAdmin මුල් පිටුව" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6893,7 +6911,7 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6903,7 +6921,7 @@ msgstr "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6913,7 +6931,7 @@ msgstr "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6921,19 +6939,19 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6942,21 +6960,21 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7294,112 +7312,112 @@ msgstr "ගබඩා යන්ත්‍ර" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7407,58 +7425,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7468,159 +7486,159 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "වරප්‍රසාද නොමැත." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "කිසිවක් නැත" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "පරිපාලනය" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "සම්පත් සීමා" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැ‍‍බේ." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "ලොගින තොරතුරු" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "මුරපදය වෙනස් නොකරන්න" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "No user(s) found." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "%s ඉවත් කරමින් පවතී" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "ඕනෑම" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "නව භාවිතා කරන්නේක් එක් කරන්න" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7633,92 +7651,92 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should %" "sreload the privileges%s before you continue." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "පහත දත්තගබඩාවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... පැරණි එක තබා ගන්න." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ".. භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "කිසිවක් නැත" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්‍රසාද එයට දෙන්න" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" දත්තගබඩාව සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "ගෝලීම" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "wildcard" @@ -8722,7 +8740,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9135,12 +9153,12 @@ msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "ලේබලය" @@ -9149,72 +9167,72 @@ msgstr "ලේබලය" msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "අන්‍ය අගයන් බ්‍රවුස් කරන්න" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "ශ්‍රිතය" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Because of its length,
this field might not be editable " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "ද්වීමය - සංස්කරණය නොකරන්න" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Insert as new row" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "සහ එවිට" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "මීලඟ පේළිය එක් කරන්න" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9322,12 +9340,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr " %s වගුව දැනටමත් පවතී!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s වගුව හලන ලදි" @@ -9824,11 +9842,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "විස්තරය" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "You don't have sufficient privileges to be here right now!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "The profile has been updated." diff --git a/po/sk.po b/po/sk.po index 2f85d18546..d9ee3ff683 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-22 02:26+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: slovak \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Zobraziť všetko" @@ -38,17 +38,20 @@ msgstr "" "rodičovské okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu " "bezpečnostných nastavení" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Hľadať" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Hľadať" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Komentár k databáze: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Komentár k tabuľke" @@ -133,7 +136,7 @@ msgstr "Komentár k tabuľke" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -148,8 +151,8 @@ msgstr "Názvy stĺpcov" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "Typ" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Nulový" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "Linkovať na" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "Komentáre" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nie" @@ -222,10 +225,10 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "Označiť všetko" msgid "Unselect All" msgstr "Odznačiť všetko" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Meno databázy je prázdne!" @@ -266,81 +269,81 @@ msgstr "Databáza %s bola premenovaná na %s" msgid "Database %s has been copied to %s" msgstr "Databáza %s bola skopírovaná na %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Premenovať databázu na" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Príkaz" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Premenovať databázu na" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Databáza %s bola zmazaná." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Prejsť do databázy" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Skopírovať databázu na" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Iba štruktúru" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Štruktúru a dáta" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Iba dáta" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Pridať %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Pridať obmedzenia" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Prepnúť na skopírovanú databázu" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Zotriedenie" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -352,24 +355,24 @@ msgstr "" "Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak " "chcete zistiť prečo, kliknite %ssem%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relačná schéma" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabuľka" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -380,33 +383,33 @@ msgstr "Riadkov" msgid "Size" msgstr "Veľkosť" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "práve sa používa" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Vytvorenie" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Posledná zmena" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Posledná kontrola" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgstr[1] "%s tabuľka(y)" msgstr[2] "%s tabuľka(y)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "Zostupne" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Ukázať" @@ -467,8 +470,8 @@ msgid "Del" msgstr "Zmazať" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "alebo" @@ -542,17 +545,19 @@ msgstr[0] "%s výskyt(ov)v tabuľke %s" msgstr[1] "%s výskyt(ov)v tabuľke %s" msgstr[2] "%s výskyt(ov)v tabuľke %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Prechádzať" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -599,156 +604,141 @@ msgstr "V tabuľke(ách):" msgid "Inside column:" msgstr "V tabuľke(ách):" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Vložiť" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Štruktúra" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Odstrániť" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Vyprázdniť" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabuľka %s bola vyprázdená" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Pohľad %s bol odstránený" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabuľka %s bola odstránená" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Pohľad" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikácia" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Celkom" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Na tomto MySQL servri je prednastaveným úložným systémom %s." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Výber:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Označiť všetko" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Odznačiť všetko" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exportovať" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Vyprázdniť" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Odstrániť" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Skontrolovať tabuľku" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimalizovať tabuľku" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Opraviť tabuľku" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analyzovať tabuľku" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Dátový slovník" @@ -756,13 +746,13 @@ msgstr "Dátový slovník" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -789,8 +779,8 @@ msgstr "Stav" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Akcia" @@ -837,12 +827,12 @@ msgstr "Skontrolovať tabuľku" msgid "Database Log" msgstr "Databáza" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -921,7 +911,7 @@ msgstr "Záznam z obľúbených bol zmazaný." msgid "Showing bookmark" msgstr "Zobrazujem obľúbený príkaz" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Príkaz %s bol zaradený medzi obľúbené" @@ -949,7 +939,7 @@ msgstr "" "časový limit behu skriptu v php." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Späť" @@ -1030,11 +1020,11 @@ 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:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Heslo je prázdne!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" @@ -1139,116 +1129,122 @@ msgid "Searching" msgstr "Hľadať" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL dopyt" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL dopyt" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Systémy" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Zmeny boli uložené" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Zobraziť prepojenia" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Interné vzťahy" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Možnosti všeobecných vzťahov" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Vypnuté" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Zvolte, ktoré pole zobraziť" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Vytvoriť Heslo" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Vytvoriť" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Zmeniť heslo" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Po" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Žiadny" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Predchádzajúci" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1256,96 +1252,96 @@ msgid "Next" msgstr "Ďalší" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Celkom" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binárny" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Máj" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jún" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Júl" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1353,178 +1349,178 @@ msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dec" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ne" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Po" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Út" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pi" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Ne" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Št" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pi" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "práve sa používa" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1598,9 +1594,9 @@ msgid "Comment" msgstr "Komentár" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Upraviť" @@ -1621,15 +1617,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Databázy" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Chyba" @@ -1877,6 +1873,32 @@ msgstr "Stiahnuť súbor" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Vložiť" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Štruktúra" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1945,7 +1967,7 @@ msgstr "Chybný index serveru: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybný názov hostu pre server %1$s. Prosím, skontrolujte konfiguráciu." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -2000,7 +2022,7 @@ msgstr "MySQL hlási: " msgid "Failed to connect to SQL validator!" msgstr "Nepodarilo sa pripojiť k zdroju" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Vysvetliť SQL" @@ -2012,11 +2034,11 @@ msgstr "Preskočiť vysvetlenie SQL" msgid "Without PHP Code" msgstr "bez PHP kódu" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Obnoviť" @@ -2025,7 +2047,7 @@ msgstr "Obnoviť" msgid "Skip Validate SQL" msgstr "Preskočiť potvrdenie platnosti SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Potvrdiť platnosť SQL" @@ -2125,7 +2147,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2149,14 +2171,14 @@ msgid "Select from the web server upload directory %s:" msgstr "upload adresár web serveru" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Štruktúra" @@ -2286,7 +2308,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2296,15 +2318,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Uložiť" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Vynulovať" @@ -2428,139 +2450,135 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Nastavenia exportu databáz" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Premenovať databázu na" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Predvolený server" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Upraviť nasledujúci riadok" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Zobraziť vlastnosti" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Pošli" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Znaková sada súboru:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formát" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Kompresia" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2570,71 +2588,71 @@ msgstr "Kompresia" msgid "Put columns names in the first row" msgstr "Pridať názvy polí na prvý riadok" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Polia uzatvorené" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Polia uvedené pomocou" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Nahradiť NULL hodnoty" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Riadky ukončené" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Riadky ukončené" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Verzia Excelu" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Vzor pre názov súboru" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Vzor pre názov súboru" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Vzor pre názov súboru" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2642,407 +2660,407 @@ msgstr "Vzor pre názov súboru" msgid "Dump table" msgstr "%s tabuľka(y)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Zahrnúť nadpis tabuľky" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Nadpis tabuľky" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Nadpis pokračovania tabuľky" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Návestie" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME typ" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Prepojenia" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Typ vytvorených dopytov" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Prepísať existujúci súbor(y)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Vzor pre názov súboru" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Dátum vytvorenia, poslednej zmeny a kontroly" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Použiť oneskorené vloženia" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Vypnúť kontrolu cudzích kľúčov" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Použiť IGNORE" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maximálna veľkosť vytvoreného príkazu" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Typ vytvorených dopytov" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Uzatvoriť príkazy v transakcii" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Typ vytvorených dopytov" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Nastavenia exportu databáz" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV dáta" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Vytvoriť" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Importovať súbory" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Nastavenia exportu databáz" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servery" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabuľky" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Číslo stránky:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "SQL okno" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentácia" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Replication status" msgid "Authentication settings" msgstr "Stav replikácie" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Konfiguračný súbor" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Nastavenia exportu databáz" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL dopyt" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL dopyt" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL dopyt" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL história" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3050,72 +3068,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Štart" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tabuľka" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Požiť textové pole" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Nastavenia exportu databáz" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3126,210 +3144,210 @@ 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:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignorovať opakujúce sa riadky" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Nahradiť dáta v tabuľke súborom" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Formát importovaného súboru" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Použiť kľúčové slovo LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Mená stĺpcov na prvom riadku" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Neimportovať prázdne riadky" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Počet záznamov (príkazov), ktoré sa majú zo začiatku preskočiť" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "Počet zoradených riadkov." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Zobrazovať komentáre stĺpcov" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "Verzia MySQL klienta" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3337,433 +3355,433 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Obmedzenie zdrojov" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Zmeniť poradie tabuľky podľa" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "SQL okno" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "SQL okno" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "SQL okno" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Opravné vlákna" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Domovský adresár pre dáta" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Spojenia" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 #, fuzzy msgid "Control user" msgstr "Ovládať slave:" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Žiadne tabuľky" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Defragmentovať tabuľku" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "rozšírenie PHP" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Žiadne databázy" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "meno servera" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3772,302 +3790,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "meno databázy" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "ID servra" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Opraviť tabuľku" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Voľba serveru" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Zobrazovať komentáre stĺpcov" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Údaj" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Režim automatickej obnovy" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Zobraziť otvorené tabuľky" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Zobraziť kompletné dopyty" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Štatistika riadku" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4075,123 +4093,123 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Zobraziť otvorené tabuľky" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Heslo" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Používateľ:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Pridať/Odobrať polia stĺpcov" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Predvolené" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4199,58 +4217,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4273,74 +4291,74 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV pomocou LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Tabuľkový procesor Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Vlastná farba" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Nastavenia exportu databáz" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Dáta" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV pre MS Excel dáta" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4380,7 +4398,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Udalosti" @@ -4409,8 +4427,8 @@ msgid "Designer" msgstr "Dizajnér" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Oprávnenia" @@ -4422,7 +4440,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4451,18 +4469,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Zmeniť heslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Žiadne heslo" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Potvrdiť" @@ -4485,8 +4503,8 @@ msgstr "Vytvoriť novú databázu" msgid "Create" msgstr "Vytvoriť" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Žiadne oprávnenia" @@ -4633,8 +4651,8 @@ msgid "Compression:" msgstr "Kompresia" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Žiadny" @@ -4812,7 +4830,7 @@ msgstr "Zoradiť podľa kľúča" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4848,8 +4866,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Skryť" @@ -4867,49 +4885,49 @@ msgstr "Spustiť obľúbený dopyt" msgid "The row has been deleted" msgstr "Riadok bol zmazaný" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Zabiť" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "v dopyte" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Ukázať záznamy " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "celkovo" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f sek." -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Zmeniť" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Zobraziť schému PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Linka nebola nájdená" @@ -5348,12 +5366,12 @@ msgid "Data dump options" msgstr "Nastavenia exportu databáz" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Sťahujem dáta pre tabuľku" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Štruktúra tabuľky pre tabuľku" @@ -5406,9 +5424,9 @@ msgstr "Dostupné MIME typy" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Hostiteľ" @@ -5554,41 +5572,41 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedúry" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funkcie" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Obmedzenie pre exportované tabuľky" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Obmedzenie pre tabuľku" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRE TABUĽKU" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "PREPOJENIA PRE TABUĽKU" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Iba štruktúru" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5623,42 +5641,42 @@ msgstr "výsledok SQL" msgid "Generated by" msgstr "Vygenerované" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\"" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\"" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Prejsť do databázy" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "nastavenia" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Prejsť do tabuľky" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Prejsť na Prejsť na pohľad" @@ -5710,7 +5728,7 @@ msgstr "Chybný počet položiek v CSV vstupe na riadku %d." msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Názov tabuľky" @@ -5791,7 +5809,7 @@ msgid "Charset" msgstr "Znaková sada" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binárny" @@ -6078,8 +6096,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Meno používateľa" @@ -6100,7 +6118,7 @@ msgid "Variable" msgstr "Premenná" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Hodnota" @@ -6119,34 +6137,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Pridať replikačného užívateľa pre slave" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Akýkoľvek používateľ" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Požiť textové pole" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Akýkoľvek hostiteľ" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokálny" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Použiť tabuľku s hostiteľmi" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6402,11 +6420,11 @@ msgstr "Spustiť SQL dopyt/dopyty na databázu %s" msgid "Columns" msgstr "Názvy stĺpcov" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" @@ -6438,7 +6456,7 @@ msgstr "Iba prezrieť" msgid "Location of the text file" msgstr "Lokácia textového súboru" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "upload adresár web serveru" @@ -6606,22 +6624,22 @@ msgstr "" "Nie je dostupný žiadny popis pre túto transformáciu.
Kontaktujte " "autora, ktorý %s vytára." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Úložný Systém" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Pridať stĺpec/stĺpce" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6850,8 +6868,8 @@ msgstr "nastavenia" msgid "Protocol version" msgstr "Verzia protokolu" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Používateľ" @@ -6888,7 +6906,7 @@ msgstr "Oficiálne stránky phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6900,7 +6918,7 @@ msgstr "" "nastavením, nie je zabezpečený proti napadnutiu, táto bezpečnostná chyba by " "mala byť urýchlene odstránená." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6909,7 +6927,7 @@ msgstr "" "V nastavení PHP je aktívna funkcia mbstring.func_overload, ktorá nie je " "kompatibilná s phpMyAdmin-om a môže spôsobiť stratu dát!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6920,7 +6938,7 @@ msgstr "" "rozdeľovať reťazce kódované v týchto znakových sadách a môže to viesť k " "nečakaným výsledkom." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6928,13 +6946,13 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nastavte prosím kľúč pre šifrovanie cookies v konfiguračnom súbore " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6944,7 +6962,7 @@ msgstr "" "vašom phpMyAdmin adresári. Mali by ste ho odstrániť, ak je phpMyAdmin " "nakonfigurovaný." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6953,14 +6971,14 @@ msgstr "" "Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak " "chcete zistiť prečo, kliknite %ssem%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6969,7 +6987,7 @@ msgstr "" "Verzia Vašej PHP MySQL knižnice %s je rozdielna od MySQL server verzie %s. " "Toto môže spôsobiť nepredvídateľné správanie." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7308,112 +7326,112 @@ msgstr "Úložné Systémy" msgid "View dump (schema) of databases" msgstr "Export databáz" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Všetky oprávnenia okrem GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Povolí meniť štruktúru existujúcich tabuliek." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Povolí vytváranie nových databáz a tabuliek." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Umožňuje vytvárať uložené procedúry." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Povolí vytváranie nových tabuliek." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Povolí vytváranie dočasných tabuliek." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Umožňuje vytvárať nové pohľady." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Povolí mazanie dát." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Povolí odstraňovanie databáz a tabuliek." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Povolí odstraňovanie tabuliek." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Umožňuje spúšťať uložené procedúry." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Povolí vytváranie a mazanie indexov." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Povolí vkladanie a nahradzovanie dát." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Obmedzí počet nových spojení, ktoré môže používateľ vytvoriť za hodinu." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Obmedzí počet dopytov, ktoré môže používateľ odoslať za hodinu." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7421,60 +7439,60 @@ msgstr "" "Obmedzí počet príkazov meniacich tabuľku alebo databázu, ktorá môže " "používateľ odoslať za hodinu." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Obmedzuje počet simultánnych pripojení používateľa." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nefunguje v tejto verzii MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí " "serveru." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrebné pre replikáciu pomocných serverov." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Povolí čítanie dát." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Povolí prístup ku kompletnému zoznamu databáz." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Povolí vypnutie serveru." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7484,160 +7502,160 @@ msgstr "" "Potrebné pre väčšinu operácií pri správe serveru ako nastavovanie globálny " "premenných alebo zabíjanie procesov iných používateľov." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Povolí vytváranie a mazanie indexov." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Povolí menenie dát." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Žiadne práva." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Žiadny" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Poznámka: názvy MySQL oprávnení sú uvádzané v angličtine. " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globálne práva" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrácia" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Obmedzenie zdrojov" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Prihlásenie" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nezmeniť heslo" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Používateľ %s už existuje!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Používateľ bol pridaný." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Boli aktualizované oprávnenia pre %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Boli zrušené oprávnenia pre %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pre %s bolo úspešne zmenené." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Odstraňuje sa %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Na odstránenie neboli vybraní žiadni používatelia!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Znovunačítanie práv" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Vybraní používatelia bol úspešne odstránený." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Upraviť oprávnenia" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Zrušiť" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Akýkoľvek" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Prehľad používatelov" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Prideliť" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Pridať nového používateľa" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Odstrániť vybraných používateľov" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7650,51 +7668,51 @@ msgstr "" "tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %" "sznovunačítanie práv%s predtým ako budete pokračovať." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Pridať oprávnenia pre nasledujúcu databázu" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Náhradzujúcim znakom _ a % by mal predchádzať znak \\, pokiaľ ich nechcete " "použiť doslovne" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Pridať oprávnenia pre nasledujúcu tabuľku" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Vytvoriť používateľa s rovnakými právami a..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... zachovať pôvodného používateľa." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... zmazať pôvodného používateľa z tabuliek používateľov." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7702,44 +7720,44 @@ msgstr "" " ... zmazať pôvodného používateľa z tabuliek používateľov a potom " "znovunačítať oprávnenia." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Databáza pre používateľa" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Žiadny" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Prideliť všetky oprávnenia na databázu "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Používatelia majúci prístup k "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globálny" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "závislé na databáze" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "nahradzujúci znak" @@ -8766,7 +8784,7 @@ msgstr "Nepodarilo sa pripojiť k zdroju" msgid "Could not connect to the target" msgstr "Nepodarilo sa pripojiť k cieľu" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9181,12 +9199,12 @@ msgstr "Zobrazujem SQL dotaz" msgid "Validated SQL" msgstr "Potvrdiť platnosť SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Názov" @@ -9195,74 +9213,74 @@ msgstr "Názov" msgid "Table %1$s has been altered successfully" msgstr "Tabuľka %1$s bola úspešné upravená" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funkcia" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Toto možno nepôjde upraviť,
kvôli svojej dĺžke " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binárny - neupravujte " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Zobrazujem SQL dotaz" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "a potom" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Späť" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými " "smermi klávesy CTRL+šípky" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9370,12 +9388,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tabuľka %s už existuje!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Tabuľka %1$s bola vytvorená." @@ -9869,11 +9887,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Popis" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil bol aktualizovaný." diff --git a/po/sl.po b/po/sl.po index 025d72dd5f..33c29a3041 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" -"PO-Revision-Date: 2010-09-11 15:50+0200\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" +"PO-Revision-Date: 2010-09-21 20:14+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "MIME-Version: 1.0\n" @@ -16,7 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Pokaži vse" @@ -38,17 +38,20 @@ msgstr "" "Ciljnega okna ni bilo mogoče osvežiti. Morda ste zaprli nadrejeno okno ali " "pa vaš brskalnik blokira osveževanje varnostnih parametrov med okni." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Iskanje" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Iskanje" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Pripomba zbirke podatkov: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Pripomba tabele" @@ -133,7 +136,7 @@ msgstr "Pripomba tabele" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -146,8 +149,8 @@ msgstr "Stolpec" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -159,13 +162,13 @@ msgstr "Vrsta" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -184,8 +187,8 @@ msgid "Links to" msgstr "Povezave z" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -201,10 +204,10 @@ msgstr "Pripombe" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -220,10 +223,10 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -250,7 +253,7 @@ msgstr "Izberi vse" msgid "Unselect All" msgstr "Prekliči izbor vsega" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Ime zbirke podatkov je prazno!" @@ -264,77 +267,77 @@ msgstr "Zbirka podatkov %s je preimenovana v %s" msgid "Database %s has been copied to %s" msgstr "Zbirka podatkov %s je kopirana v %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Ukaz" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Odstrani zbirko podatkov" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Podatkovna zbirka %s je zavržena." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Zavrzi zbirko podatkov (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopiraj zbirko podatkov v" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura in podatki" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podatki" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pred kopiranjem" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj omejitve" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Preklopi na kopirano podatkovno zbirko" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Pravilo za razvrščanje znakov" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -343,22 +346,22 @@ msgstr "" "Hramba konfiguracije phpMyAdmin je bila onemogočena. Če želite izvedeti " "zakaj, kliknite %stukaj%s." -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "Uredi ali izvozi relacijsko shemo" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -369,33 +372,33 @@ msgstr "vrstic" msgid "Size" msgstr "Velikost" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "v uporabi" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Ustvarjeno" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Zadnjič posodobljeno" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Zadnjič pregledano" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -405,7 +408,7 @@ msgstr[2] "%s tabele" msgstr[3] "%s tabel" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -435,7 +438,7 @@ msgid "Descending" msgstr "Padajoče" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Pokaži" @@ -456,8 +459,8 @@ msgid "Del" msgstr "Briši" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Ali" @@ -527,17 +530,19 @@ msgstr[1] "%s zadetka v tabeli %s" msgstr[2] "%s zadetki v tabeli %s" msgstr[3] "%s zadetkov v tabeli %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Prebrskaj" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -581,156 +586,141 @@ msgstr "V tabelah:" msgid "Inside column:" msgstr "V stolpcu:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Vstavi" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Zavrzi" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Izprazni" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je izpraznjena" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je zavržen" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je zavržena" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Sledenje je aktivno." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Sledenje ni aktivno." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Pogled" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Podvojevanje" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Vsota" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Z označenim:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Označi vse" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Odznači vse" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Preveri prekoračene" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Izvozi" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Izprazni" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Zavrzi" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Preveri tabelo" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimiraj tabelo" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Popravi tabelo" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analiziraj tabelo" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Slovar podatkov" @@ -738,13 +728,13 @@ msgstr "Slovar podatkov" msgid "Tracked tables" msgstr "Sledene tabele" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -770,8 +760,8 @@ msgstr "Stanje" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Dejanje" @@ -814,12 +804,12 @@ msgstr "Sledi tabeli" msgid "Database Log" msgstr "Dnevnik zbirke podatkov" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "Vrednosti za stolpec \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "Vnesite vsako vrednost v svoje polje." @@ -898,7 +888,7 @@ msgstr "Zaznamek je odstranjen." msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" @@ -926,7 +916,7 @@ msgstr "" "povečate vaše časovne omejitve PHP." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Nazaj" @@ -1004,11 +994,11 @@ msgstr "Ime gostitelja je prazno!" msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" @@ -1089,100 +1079,108 @@ msgid "Searching" msgstr "Iskanje" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "Preklopi vidnost polja za poizvedbe" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Polje poizvedbe SQL" #: js/messages.php:85 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Polje poizvedbe SQL" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "Urejanje v vrstici" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Prezri" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Spremembe so shranjene" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Dodano razmerje FOREIGN KEY" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Dodana notranja razmerja" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Napaka: Razmerje ni dodano." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Napaka: razmerje že obstaja." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Napaka pri shranjevanju koordinat Oblikovalnika." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Splošne lastnosti relacij" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Onemogočeno" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Izberite referenčni ključ" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Izberite tuji ključ" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Izberite stolpec za prikaz" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "Ustvari geslo" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Ustvari" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "Spremeni geslo" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "Več" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Končano" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "Prejšnji" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1190,231 +1188,231 @@ msgid "Next" msgstr "Naslednji" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "Danes" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "januar" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "februar" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "marec" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "april" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "maj" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "junij" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "julij" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "avgust" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "september" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "oktober" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "november" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "dec" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "nedelja" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "ponedeljek" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "torek" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "sreda" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "četrtek" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "petek" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "sob" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "ne" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "po" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "sr" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "če" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "pe" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "ted." -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "Ura" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "Minuta" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "Sekunda" @@ -1490,9 +1488,9 @@ msgid "Comment" msgstr "Pripomba" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Uredi" @@ -1515,15 +1513,15 @@ msgstr "" "Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko " "odstrani." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Zbirke podatkov" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Napaka" @@ -1772,6 +1770,32 @@ msgstr "Prenesi datoteko" msgid "Could not open file: %s" msgstr "Ne morem odpreti datoteke: %s" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Vstavi" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktura" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "Statistika poizvedb" @@ -1837,7 +1861,7 @@ msgstr "" "Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo " "konfiguracijo." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Strežnik" @@ -1891,7 +1915,7 @@ msgstr "MySQL je vrnil: " msgid "Failed to connect to SQL validator!" msgstr "Ne morem se povezati s preverjalnikom SQL!" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Razloži stavek SQL" @@ -1903,11 +1927,11 @@ msgstr "Preskoči razlago stavka SQL" msgid "Without PHP Code" msgstr "Brez kode PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Ustvari kodo PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Osveži" @@ -1916,7 +1940,7 @@ msgstr "Osveži" msgid "Skip Validate SQL" msgstr "Preskoči preverjanje pravilnosti SQL stavka" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Preveri pravilnost stavka SQL" @@ -2014,7 +2038,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2037,14 +2061,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "struktura" @@ -2165,7 +2189,7 @@ msgid "Set value: %s" msgstr "Določi vrednost: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Povrni privzeto vrednost" @@ -2175,15 +2199,15 @@ msgstr "Dovoli uporabnikom prilagajati to vrednost" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Shrani" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Ponastavi" @@ -2322,18 +2346,14 @@ msgid "Confirm DROP queries" msgstr "Potrjevanje poizvedb DROP" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "Usmerjanje po poljih s ctrl+puščice" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "Odkrivaj napake SQL" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "Privzeta smer prikaza" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" @@ -2341,116 +2361,116 @@ msgstr "" "[kbd]vodoravno[/kbd], [kbd]navpično[/kbd] ali število, ki določa največje " "število za katero bo uporabljena navpična postavitev" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "Smer prikaza za spreminjanje/ustvarjanje stolpcev" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Zavihek, ki se prikaže ob odprtju zbirke podatkov" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Privzet zavihek zbirke podatkov" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Zavihek, ki se prikaže ob odprtju strežnika" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Privzet zavihek strežnika" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Zavihek, ki se prikaže ob odprtju tabele" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Privzet zavihek tabele" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Privzeto prikaži dvojiške vsebine kot HEX" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Prikaži dvojiške vsebine kot HEX" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Prikaži naštete zbirke podatkov kot seznam namesto spustnega menija" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Prikaži zbirke podatkov kot seznam" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Prikaži strežnike kot seznam" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "Uredi poizvedbe SQL v pojavnem oknu" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "Uredi v oknu" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 msgid "Display errors" msgstr "Prikaži napake" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "Zberi napake" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" "Prikaži ikone za opozorilna sporočila, sporočila o napakah in informacijah" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "Napake z ikonami" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" "Nastavi število sekund, ko se skript lahko izvaja ([kbd]0[/kbd] za neomejeno)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Najdaljši čas izvajanja" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Shrani kot datoteko" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Nabor znakov datoteke" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Oblika" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Stiskanje" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2458,169 +2478,169 @@ msgstr "Stiskanje" msgid "Put columns names in the first row" msgstr "Postavi imena stolpcev v prvo vrstico" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "Stolpci obdani z" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "Stolpci izognjeni z" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Zamenjaj NULL z" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "Odstrani znake CRLF znotraj stolpcev" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "Stolpci zaključeni z" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Vrstice zaključene z" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "Izdaja za Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Predloga imena zbirke podatkov" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Predloga imena strežnika" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Predloga imena tabele" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 msgid "Dump table" msgstr "Odloži tabelo" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Vključi ime tabele" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Ime tabele" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Nadaljevanje imena tabele" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Označi ključ" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Vrsta MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 msgid "Export method" msgstr "Način izvoza" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Shrani na strežnik" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Prepiši obstoječo(e) datoteko(e)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Zapomni si predlogo imena datoteke" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "Obdaj imena tabel in stolpcev z enojnimi poševnimi narekovaji" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Združljivostni način SQL" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "Skladnja ob vstavljanju podatkov" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Datumi za ustvarjeno/posodobljeno/preverjeno" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Uporabi zakasnjeno vstavljanje" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Onemogoči preverjanja tujih ključev" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Uporabi šestnajstiško za BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Uporabi možnost prezri vstavke" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Največja dolžina ustvarjene poizvedbe" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 msgid "Export type" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Vključi izvoz v transakcijo" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "Izvozi čas v UTC" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Vsili varno povezavo med uporabo phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Vsili povezavo SSL" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2628,160 +2648,160 @@ 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Vrstni red spustnega seznama tujih ključev" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Omejitev tujih ključev" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Način brskanja" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Prilagodite način brskanja" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "Prilagodite privzete možnosti" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV-podatki" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "Razvijalec" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "Nastavitve za razvijalce phpMyAdmin" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Način urejanja" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Prilagodite način urejanja" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Privzete možnosti izvoza" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Prilagodite privzete možnosti izvoza" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Lastnosti" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 msgid "General" msgstr "Splošno" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "Nastavi nekatere pogosto uporabljane možnosti" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Uvozi" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Privzete možnosti uvoza" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Prilagodite pogoste privzete možnosti uvoza" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Uvoz / izvoz" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 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:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Možnosti prikaza podatkovnih zbirk" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigacijski okvir" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Prilagodite prikaz navigacijskega okvirja" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Strežniki" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Možnosti prikaza strežnikov" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabele" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Možnosti prikaza tabel" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Glavni okvir" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Druge nastavitve" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Nastavitve, ki se ne uvrščajo nikamor drugam" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 msgid "Page titles" msgstr "Naslovi strani" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -2791,22 +2811,22 @@ msgstr "" "html#cfg_TitleTable]dokumentacijo[/a] za čarobne nize, ki jih lahko " "uporabite za pridobitev posebnih vrednosti." -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Okno za poizvedbe" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Prilagodite možnosti okna poizvedb" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Varnost" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2814,23 +2834,23 @@ msgstr "" "Pomnite, da je phpMyAdmin samo uporabniški vmesnik in njegove lastnosti ne " "omejujejo MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Osnovne nastavitve" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 msgid "Authentication" msgstr "Overovitev" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "Nastavitve overovitve" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Konfiguracija strežnika" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -2838,15 +2858,15 @@ msgstr "" "Napredne nastavitve strežnika; ne spreminjajte teh možnosti, če ne veste " "čemu služijo" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Vnesite parametre povezave s strežnikom" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "Hramba konfiguracije" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -2856,54 +2876,54 @@ msgstr "" "funkcij, glej [a@Documentation.html#linked-tables]hrambo konfiguracije " "phpMyAdmin[/a] v dokumentaciji" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "Sledenje spremembam" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" "Sledenje spremembam narejenih v zbirki podatkov. Potrebuje konfigurirano " "podatkovno zbirko PMA." -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Prilagodi možnosti izvoza" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Prilagodi privzete možnosti uvoza" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Prilagodi navigacijski okvir" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Prilagodi glavni okvir" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Poizvedbe SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "Polje poizvedbe SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Prilagodi povezave prikazane v poljih poizvedbe SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "Nastavitve poizvedb SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 msgid "SQL Validator" msgstr "Preverjalnik SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2915,43 +2935,43 @@ msgstr "" "[a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 " "Upright Database Technology. Vse pravice pridržane.[/em]" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Zagon" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Prilagodi začetno stran" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Zavihki" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Določite, kako želite, da zavihki delujejo" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "Besedilna polja" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "Prilagodi polja za vnos besedila" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Besedilo Texy!" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "Opozorila" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Onemogoči nekatera opozorila, ki jih prikazuje phpMyAdmin" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -2959,15 +2979,15 @@ msgstr "" "Omogoči stiskanje [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] za posege " "uvoza in izvoza" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Dodatni parametri za iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -2975,11 +2995,11 @@ msgstr "" "Če je omogočeno, phpMyAdmin nadaljuje z izvajanjem poizvedb z več izjavami, " "četudi ena od poizvedb spodleti" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Prezri napake več stavkov" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -2989,21 +3009,21 @@ msgstr "" "omejitve. To je morda dober način za uvoz velikih datotek, čeprav lahko " "prekine transakcije." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Delni uvoz: dovoli prekinitev" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Prezri podvojene vrstice" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Podatke v tabeli zamenjaj z datoteko" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3011,88 +3031,88 @@ msgstr "" "Privzeta oblika; pomnite, da je seznam odvisen od položaja (podatkovna " "zbirka, tabela) in vedno je na voljo samo SQL" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Oblika uvožene datoteke" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Uporabi ključno besedo LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Imena stolpcev v prvi vrstici" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Ne uvozi praznih vrstic" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "Uvozi denarne enote ($5.00 v 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 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:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "Število poizvedb, ki jih naj preskočim od začetka" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Delni uvoz: preskoči poizvedbe" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne uporabi AUTO_INCREMENT za ničelne vrednosti" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "Začetno stanje drsnikov" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Koliko vrstic je lahko vstavljenih naenkrat" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Število vstavljenih vrstic" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Cilj ikone za hitri dostop" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Prikaži logotip v levem okvirju" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Prikaži logotip" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Prikaži izbrani strežnik na vrhu levega okvirja" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Prikaži izbiro strežnikov" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 msgid "Display table filter" msgstr "Prikaži filter tabel" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 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:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Ločilo drevesa zbirke podatkov" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3100,39 +3120,39 @@ msgstr "" "Samo lahka različica; prikaže zbirke podatkov v drevesu (določeno z ločilom, " "navedenim spodaj)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Prikaži zbirke podatkov v drevesu" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Onemogočite to, če želite videti vse zbirke podatkov naenkrat" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Uporabi lahko različico" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Največja globina drevesa tabel" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 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:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Ločilo drevesa tabel" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "URL kamor bo kazal logotip v navigacijskem okvirju" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "URL-povezava logotipa" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3140,38 +3160,38 @@ msgstr "" "Odpre povezano stran v glavnem ([kbd]main[/kbd]) ali v novem oknu ([kbd]new[/" "kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Cilj povezave logotipa" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Poudari strežnik pod miškinim kazalcem" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Omogoči poudarjanje" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Uporabi grafično manj zahtevne zavihke" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Lahki zavihki" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 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:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "Omejitev znakov stolpca" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3182,11 +3202,11 @@ msgstr "" "hitro povzroči pozabljanje odjavljanja iz ostalih strežnikov, ko ste " "povezani na več strežnikov." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Izbriši vse piškotke ob odjavi" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3194,11 +3214,11 @@ msgstr "" "Določi, ali se naj prejšnji prijavni podatki v načinu overovitve piškotkov " "prikličejo ali ne" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Prikliči uporabniško ime" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3210,54 +3230,54 @@ 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:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Shranjevanje prijavnih piškotkov" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Veljavnost prijavnega piškotka" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "Dvojna velikost besedilnega polja za stolpce LONGTEXT" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "Večje besedilno polje za LONGTEXT" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "Uporabi ikone na glavni strani" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Največja dolžina prikazanega SQL" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "Uporabniki ne morejo določiti višje vrednosti" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Največje število podatkovnih zbirk prikazanih v levem okvirju in na seznamu " "zbirk podatkov" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Največ podatkovnih zbirk" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3267,19 +3287,19 @@ msgstr "" "rezultatov vsebuje več vrstic, se prikažeta povezavi »Prejšnja« " "in »Naslednja«." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Največje število vrstic za prikaz" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Največje število tabel prikazanih na seznamu tabel" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Največ tabel" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -3287,11 +3307,11 @@ msgstr "" "Onemogoči privzeto opozorilo, ki se prikaže, če mcrypt manjka za overitev " "piškotkov" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "Opozorilo mcrypt" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3299,43 +3319,43 @@ msgstr "" "Število bajtov, ki jih skript lahko dodeli, npr. [kbd]32M[/kbd] ([kbd]0[/" "kbd] za neomejeno)" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Omejitev spomina" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "Pokaži levo povezavo za izbris" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "Pokaži desno povezavo za izbris" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 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:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "Naravni vrstni red" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Uporabi samo ikone, samo besedilo ali oboje" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Ikonska navigacijska vrstica" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 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:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "Izhod medpomnjenja GZip" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3343,19 +3363,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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Privzet vrstni red" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Uporabi vztrajne povezave s podatkovnimi zbirkami MySQL" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Vztrajne povezave" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3365,23 +3385,23 @@ msgstr "" "podatkov Struktura, če katera od tabel, potrebnih za hrambo konfiguracije " "phpMyAdmin, ni bila najdena" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Manjkajoče tabele hrambe konfiguracije phpMyAdmin" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Ikonski posegi tabel" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Prepreči urejanje stolpcev BLOB in BINARY" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "Zaščiti dvojiške stolpce" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3391,107 +3411,107 @@ 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Trajna zgodovina poizvedb" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Koliko poizvedb je hranjenih v zgodovini" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Dolžina zgodovine poizvedb" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Zavihek, ki se prikaže ob odprtju novega okna za poizvedbe" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Privzet zavihek okna za poizvedbe" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "Višina okna poizvedb (v slikovnih pikah)" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "Višina okna poizvedb" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "Širina okna poizvedb (v slikovnih pikah)" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "Širina okna poizvedb" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 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:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Pogon rekodiranja" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 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:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "Ponovi glave" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "Prikaži gumb za pomoč namesto besedila dokumentacije" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "Prikaži gumb za pomoč" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Mapa, kamor se lahko na strežnik shranijo izvozi" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Mapa za shranjevanje" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Pustite prazno, če se ne uporablja" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "Zaporedje overovitve gostitelja" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Pustite prazno za privzeto" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "Pravila overovitve gostitelja" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Dovoli prijave brez gesla" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Dovoli prijavo root" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 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:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "Področje HTTP" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3501,19 +3521,19 @@ msgstr "" "SweKey[/a] (se ne nahaja v korenski mapi dokumentov; predlagano: /etc/swekey." "conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "Konfiguracijska datoteka SweKey" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Način overovitve za uporabo" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Vrsta overovitve" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3521,11 +3541,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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Tabela zaznamkov" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3533,32 +3553,32 @@ msgstr "" "Pustite prazno, če ne želite pripomb/vrst mime stolpcev; predlagano: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Tabela informacij stolpcev" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Stisni povezavo s strežnikom MySQL" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Stisni povezavo" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 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:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Vrsta povezave" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Geslo krmilnega uporabnika" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3566,19 +3586,19 @@ 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Krmilni uporabnik" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Preštej tabele med prikazovanjem seznama podatkovnih zbirk" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Preštej tabele" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3586,11 +3606,11 @@ msgstr "" "Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Tabela Oblikovalnika" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3598,27 +3618,27 @@ msgstr "" "Več informacij na [a@http://sf.net/support/tracker.php?aid=1849494]" "sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Onemogoči uporabo INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Katera razširitev PHP naj se uporablja; uporabite mysqli, če je podprt" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Razširitev PHP za uporabo" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Skrije zbirke podatkov, ki se ujemajo z običajnim izrazom (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Skrij zbirke podatkov" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3626,31 +3646,31 @@ msgstr "" "Pustite prazno, če ne želite podpore zgodovine poizvedb SQL; predlagano: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "Tabela zgodovine poizvedb SQL" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Ime gostitelja, kjer teče strežnik MySQL" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Ime gostitelja strežnika" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Odjavni URL" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Poskusi se povezati brez gesla" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Poveži se brez gesla" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3664,30 +3684,30 @@ msgstr "" "v vrstnem redu in na koncu uporabite [kbd]*[/kbd] za prikaz preostalih v " "abecednem vrstnem redu." -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Prikaži samo navedene zbirke podatkov" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Pustite prazno, če ne uporabljate overovitve config" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Geslo za overovitev config" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF-shema: tabele strani" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3697,20 +3717,20 @@ 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:398 +#: libraries/config/messages.inc.php:397 msgid "Database name" msgstr "Ime zbirke podatkov" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Vrata strežnika" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3718,19 +3738,19 @@ 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Relacijska tabela" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "Ukaz SQL za pridobitev razpoložljivih zbirk podatkov" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "Ukaz SHOW DATABASES" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3738,43 +3758,43 @@ msgstr "" "Oglejte si [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]vrste " "overovitev[/a] za primer" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Ime seje signon" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "URL signon" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Vtičnica strežnika" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "Omogoči SSL za povezavo s strežnikom MySQL" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Uporabi SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF-shema: koordinate tabel" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3782,11 +3802,11 @@ msgstr "" "Tabela za opisovanje prikaznih stolpcev; pustite prazno, če ne želite " "podpore; predlagano: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "Tabela prikaznih stolpcev" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -3794,11 +3814,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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "Dodaj DROP DATABASE" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -3806,11 +3826,11 @@ msgstr "" "Ali naj se stavek DROP TABLE IF EXISTS doda kot prva vrstica v dnevnik pri " "ustvarjanju tabele." -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "Dodaj DROP TABLE" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -3818,21 +3838,21 @@ msgstr "" "Ali naj se stavek DROP VIEW IF EXISTS doda kot prva vrstica v dnevnik pri " "ustvarjanju pogleda." -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "Dodaj DROP VIEW" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 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:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "Izjave za sledenje" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -3840,22 +3860,22 @@ msgstr "" "Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "Tabela sledenja poizvedb SQL" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 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:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "Samodejno ustvari različice" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -3863,15 +3883,15 @@ msgstr "" "Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki " "podatkov; predlagano: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "Tabela za hranjenje uporabnikovih nastavitev" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Uporabnik za overovitev config" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -3879,11 +3899,11 @@ msgstr "" "Onemogočite, če veste, da so vaše tabele pma_* ažurirane. To prepreči " "preverjanja združljivosti in tako poveča zmogljivost" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Preverjanje razširitve" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -3891,19 +3911,19 @@ msgstr "" "Uporabniku prijazen opis tega strežnika. Pustite prazno, če se naj namesto " "tega prikaže ime gostitelja." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Razširjeno ime tega strežnika" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 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:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Dovoli prikaz vseh vrstic" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -3913,33 +3933,33 @@ msgstr "" "kbd], saj je geslo vgrajeno v konfiguracijsko datoteko; to ne omejuje " "možnosti izvedbe enakega ukaza neposredno" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Pokaži obrazec za spremembo gesla" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Pokaži obrazec za ustvarjanje zbirke podatkov" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 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:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "Pokaži vrste polj" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Prikaže polja funkcij v načinu urejanja/vstavljanja" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Prikaži polja funkcij" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -3947,32 +3967,32 @@ msgstr "" "Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Prikaži povezavo phpinfo()" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Prikaži podrobne informacije o strežniku MySQL" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Pokaži poizvedbe SQL" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Pokaži statistiko" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -3980,11 +4000,11 @@ msgstr "" "Če so zaslonski namigi omogočeni in ima zbirka podatkov določeno pripombo, " "bo to zamenjalo pripombo in pravo ime" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Prikaži pripombo zbirke podatkov namesto njenega imena" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3996,40 +4016,40 @@ msgstr "" "['LeftFrameTableSeparator'], zato je samo mapa imenovana kot pridevek, sama " "imena tabel pa ostanejo nespremenjena" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Prikaži pripombo tabele namesto njenega imena" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Prikaži pripombe tabel v zaslonskih namigih" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 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:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Preskoči zaklenjene tabele" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "Potrebuje omogočen Preverjalnik SQL" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Geslo" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4037,11 +4057,11 @@ msgstr "" "[strong]Opozorilo:[/strong] potrebuje nameščeno razširitev PHP SOAP ali PEAR " "SOAP" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "Omogoči Preverjalnik SQL" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4049,12 +4069,12 @@ msgstr "" "Če imate uporabniško ime po meri, ga določite tukaj (privzeto [kbd]anonymous" "[/kbd])" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Uporabniško ime" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4062,19 +4082,19 @@ msgstr "" "Predlagaj ime zbirke podatkov v obrazcu "Ustvari zbirko podatkov" " "(če je le mogoče) ali pusti besedilno polje prazno" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Predlagaj novo ime zbirke podatkov" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 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:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "Opozorilo Suhosin" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4082,11 +4102,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:475 +#: libraries/config/messages.inc.php:474 msgid "Textarea columns" msgstr "Stolpcev besedilnega polja" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4094,31 +4114,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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "Vrstic besedilnega polja" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "Naslov okna brskalnika, ko je izbrana zbirka podatkov" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "Naslov okna brskalnika, ko je ni izbrano nič" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "Default title" msgstr "Privzeti naslov" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "Naslov okna brskalnika, ko je izbran strežnik" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "Naslov okna brskalnika, ko je izbrana tabela" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4129,27 +4149,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:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "Seznam zaupanja vrednih proxyjev za sprejetje/zavrnitev IP" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Mapa za nalaganje" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Dovoli iskanje po celotni zbirki podatkov" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Uporabi iskanje po zbirki podatkov" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4157,11 +4177,11 @@ 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:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "Omogoči zavihek Razvijalec v nastavitvah" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4171,15 +4191,15 @@ msgstr "" "si libraries/import.lib.php za privzete podatke o tem, koliko poizvedb lahko " "stavek vsebuje." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Zgosti večkratne stavke" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Preveri za najnovejšo različico" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4187,7 +4207,7 @@ 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4208,72 +4228,72 @@ msgid "Signon authentication" msgstr "Overitev preko signon" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV z uporabo LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excelov delovni zvezek 97-2003 XLS" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excelov delovni zvezek 2007 XLSX" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Preglednica Open Document" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Hitro" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Po meri" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Možnosti za izvoz zbirke podatkov" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Podatki" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV-podatki za MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Besedilo Open Document" @@ -4312,7 +4332,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Razširitev %s manjka. Prosimo, preverite vašo konfiguracijo PHP." #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Dogodki" @@ -4341,8 +4361,8 @@ msgid "Designer" msgstr "Oblikovalnik" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegiji" @@ -4354,7 +4374,7 @@ msgstr "Rutina" msgid "Return type" msgstr "Vrnjena vrsta" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4387,18 +4407,18 @@ msgid "Details..." msgstr "Podrobnosti ..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Spremeni geslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Brez gesla" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ponovno vnesi" @@ -4419,8 +4439,8 @@ msgstr "Ustvari novo zbirko podatkov" msgid "Create" msgstr "Ustvari" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Brez privilegijev" @@ -4539,8 +4559,8 @@ msgid "Compression:" msgstr "Stiskanje:" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Brez" @@ -4696,7 +4716,7 @@ msgstr "Uredi po ključu" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4729,8 +4749,8 @@ msgstr "Prikaži dvojiške vsebine" msgid "Show BLOB contents" msgstr "Prikaži vsebine BLOB" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Skrij" @@ -4748,47 +4768,47 @@ msgstr "Izvedi izbrano poizvedbo" msgid "The row has been deleted" msgstr "Vrstica je izbrisana" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Prekini proces" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "v poizvedbi" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Prikazujem vrstice" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "skupaj" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Spremeni" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Pogled za tiskanje (s polnimi besedili)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Povezave ni mogoče najti" @@ -5258,12 +5278,12 @@ msgid "Data dump options" msgstr "Možnosti odlaganja podatkov" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Odloži podatke za tabelo" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktura tabele" @@ -5306,9 +5326,9 @@ msgstr "Prikaži vrste MIME" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Gostitelj" @@ -5392,16 +5412,12 @@ msgid "CREATE TABLE options:" msgstr "Možnosti CREATE TABLE:" #: libraries/export/sql.php:123 -#, fuzzy -#| msgid "" -#| "Enclose table and field names with backquotes (Protects field and " -#| "table names formed with special characters)" msgid "" "Enclose table and field names with backquotes (Protects field and table " "names formed with special characters or keywords)" msgstr "" "Obdaj imena tabel in polj z narekovaji (Zaščiti imena polj in tabel, " -"tvorjena s posebnimi znaki)" +"tvorjena s posebnimi znaki ali ključnimi besedami)" #: libraries/export/sql.php:136 msgid "Instead of INSERT statements, use:" @@ -5475,40 +5491,40 @@ msgstr "" "Odloži stolpce TIMESTAMP v UTC (omogoči stolpcem TIMESTAMP odlaganje in " "ponovno nalaganje med strežniki v različnih časovnih pasovih)" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedure" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funkcije" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Omejitve tabel za povzetek stanja" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Omejitve za tabelo" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "VRSTE MIME ZA TABELO" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE ZA TABELO" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Sprožilci" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struktura pogleda" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Nadomestna struktura pogleda" @@ -5541,45 +5557,45 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Ustvaril" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Oglejte si vsebino strukture s klikom na njeno ime" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo " "\"Možnosti\"" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Uredite njeno strukturo s sledenjem povezavi \"Struktura\"" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Pojdi v zbirko podatkov" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "nastavitve" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Pojdi v tabelo" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Pojdi na pogled" @@ -5635,7 +5651,7 @@ msgstr "Neveljavno število stolpcev v vnosu CSV v vrstici %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Ime tabele" @@ -5713,7 +5729,7 @@ msgid "Charset" msgstr "Nabor znakov" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Dvojiško" @@ -6002,8 +6018,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Uporabniško ime" @@ -6022,7 +6038,7 @@ msgid "Variable" msgstr "Spremenljivka" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Vrednost" @@ -6043,34 +6059,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Dodaj uporabnika podvojevanja podrejencev" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Kateri koli uporabnik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Uporabi besedilno polje" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Kateri koli gostitelj" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Ta strežnik" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Uporabi tabelo gostiteljev" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6308,11 +6324,11 @@ msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s" msgid "Columns" msgstr "Stolpci" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" @@ -6344,7 +6360,7 @@ msgstr "Samo pogled" msgid "Location of the text file" msgstr "Mesto datoteke z besedilom" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "imenik za nalaganje datotek" @@ -6503,21 +6519,21 @@ msgstr "" "Za to pretvorbo ni na voljo opisa.
Za funkcije %s se pozanimajte pri " "avtorju." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Pogon skladiščenja" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Definicija PARTITION" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s stolpec(-cev)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." @@ -6719,8 +6735,8 @@ msgstr "Več nastavitev" msgid "Protocol version" msgstr "Različica protokola" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Uporabnik" @@ -6757,7 +6773,7 @@ msgstr "Uradna domača stran phpMyAdmin" msgid "Mailing lists" msgstr "Poštni seznami" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6769,7 +6785,7 @@ msgstr "" "privzetimi nastavitvami, zato je izpostavljen vdorom. Čimprej odpravite to " "varnostno luknjo tako, da uporabniku 'root' nastavite geslo." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6778,7 +6794,7 @@ msgstr "" "V vaši konfiguraciji PHP ste omogočili mbstring.func_overload. Ta možnost ni " "združljiva s phpMyAdminom in lahko pokvari nekatere podatke!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6788,7 +6804,7 @@ msgstr "" "nabor znakov. Brez razširitve mbstring phpMyAdmin ni sposoben pravilno " "razcepiti nizov, kar lahko vodi v nepričakovane rezultate." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6800,13 +6816,13 @@ msgstr "" "piškotkov, določene v phpMyAdminu. Zaradi tega se bo vaša prijava iztekla " "prej, kot je določeno v phpMyAdminu." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfiguracijski datoteki morate sedaj določiti skrivno geslo " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6816,7 +6832,7 @@ msgstr "" "obstaja v vaši mapi phpMyAdmin. Priporočljivo jo je odstraniti, ko je " "phpMyAdmin enkrat že konfiguriran." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6825,7 +6841,7 @@ msgstr "" "Dodatne funkcije za delo s povezanimi tabelami so bile izkjučene. Če želite " "izvedeti zakaj, kliknite %stukaj%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6835,7 +6851,7 @@ msgstr "" "nekatere funkcije phpMyAdmina manjkale. Na primer navigacijski okvir se ne " "bo osveževal samodejno." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6844,7 +6860,7 @@ msgstr "" "Vaša PHP-knjižica MySQL različice %s se razlikuje od vašega strežnika MySQL " "različice %s. To lahko povzroči nepredvidljivo vedenje." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7173,113 +7189,113 @@ msgstr "Pogoni skladiščenja" msgid "View dump (schema) of databases" msgstr "Pokaži povzetek stanja zbirk podatkov" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Vsebuje vse privilegije razen GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Omogoča spreminjanje strukture obstoječih tabel." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Omogoča ustvarjanje novih podatkovnih zbirk in tabel." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Omogoča ustvarjanje shranjenih rutin." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Omogoča ustvarjanje novih tabel." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Omogoča ustvarjanje začasnih tabel." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Omogoča ustvarjanje novih pogledov." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Omogoča brisanje podatkov." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Omogoča brisanje podatkovnih zbirk in tabel." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Omogoča brisanje tabel." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Omogoča izvajanje shranjenih rutin." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Omogoča ustvarjanje in brisanje indeksov." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Omogoča vstavljanje in zamenjavo podatkov." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Omogoča zaklepanje tabel za trenutno temo." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Omeji število povezav, ki jih uporabnik lahko odpre v eni uri." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Omeji število poizved, ki jih uporabnik lahko pošlje strežniku v eni uri." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7287,62 +7303,62 @@ msgstr "" "Omeji število ukazov za spremembo tabel ali zbirke podatkov, ki jih " "uporabnik lahko izvrši v eni uri." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Omogoča ogled procesov vseh uporabnikov" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "V tej različici MySQL nima pomena." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih " "predpomnilnikov." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni " "strežniki." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrebno za podrejene strežnike pri replikaciji." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Omogoča branje podatkov." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Omogoča dostop do popolnega spiska podatkovnih zbirk." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Omogoča ugašanje strežnika." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7352,154 +7368,154 @@ msgstr "" "priklopov; Potrebno za večino administrativnih nalog kot sta postavljanje " "globalnih spremenljivk in ukinjanje procesov drugih uporabnikov." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Omogoča ustvarjanje in brisanje sprožilcev" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Omogoča spreminjanje podatkov." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Brez privilegijev." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Brez" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Opomba: Imena privilegijev MySQL so zapisana v angleščini " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globalni privilegiji" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Privilegiji tipični za podatkovno zbirko" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Omejitve virov" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Podatki o prijavi" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Ne spreminjaj gesla" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "Najden ni bil noben uporabnik." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Uporabnik %s že obstaja!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Posodobili ste privilegije za %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Odvzeli ste privilegije za %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Geslo za %s je uspešno spremenjeno." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ni izbranih uporabnikov za brisanje!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Osvežujem privilegije" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Uspešno sem izbrisal izbrane uporabnike." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Odvzemi" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Kateri koli" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Pregled uporabnikov" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Dovoli" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Dodaj novega uporabnika" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Izbriši izbrane uporabnike" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7512,50 +7528,50 @@ msgstr "" "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Privilegiji tipični za stolpec" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na naslednji podatkovni zbirki" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Pred nadomestna znaka % in _ je potrebno postaviti \\, če ju želite " "uporabiti dobesedno" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na naslednji tabeli" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Spremeni prijavne informacije / Kopiraj uporabnika" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Ustvari novega uporabnika z enakimi pravicami in ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... obdrži starega." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... izbriši starega s seznama uporabnikov." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... prekliči vse aktivne pravice starega uporabnika ter jih izbriši." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7563,43 +7579,43 @@ msgstr "" " ... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Podatkovna zbirka za uporabnika" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "Nobena" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Dodeli vse privilegije za podatkovno zbirko "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Uporabniški dostop do "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globalno" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "nadomestni znak" @@ -8623,7 +8639,7 @@ msgstr "Ne morem se povezati z virom" msgid "Could not connect to the target" msgstr "Ne morem se povezati s ciljem" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8910,26 +8926,18 @@ msgid "No newer stable version is available" msgstr "Na voljo ni novejše stabilne različice" #: setup/lib/index.lib.php:250 -#, fuzzy, php-format -#| msgid "" -#| "This [a@?page=form&formset=features#tab_Security]option[/a] should be " -#| "disabled as it allows attackers to bruteforce login to any MySQL server. " -#| "If you feel this is necessary, use [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#, php-format msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " "proxies list%s. However, IP-based protection may not be reliable if your IP " "belongs to an ISP where thousands of users, including you, are connected to." msgstr "" -"Ta [a@?page=form&formset=features#tab_Security]možnost[/a] naj bo " -"onemogočena, saj omogoča napadalcem, da se z načinom bruteforce prijavijo v " -"kateri koli strežnik MySQL. Če menite, da je to potrebno, uporabite [a@?" -"page=form&formset=features#tab_Security]seznam zaupanih proxyjev[/a]. " -"Kakor koli, zaščita temelječa na IP ni zanesljiva, če vaš IP pripada ISP-ju, " -"na katerega je povezanih tisoče uporabnikov, vključno z vami." +"Ta %smožnost%s naj bo onemogočena, saj omogoča napadalcem, da se z načinom " +"bruteforce prijavijo v kateri koli strežnik MySQL. Če menite, da je to " +"potrebno, uporabite %sseznam zaupanih proxyjev%s. Kakor koli, zaščita " +"temelječa na IP ni zanesljiva, če vaš IP pripada ISP-ju, na katerega je " +"povezanih tisoče uporabnikov, vključno z vami." #: setup/lib/index.lib.php:252 msgid "" @@ -8942,18 +8950,13 @@ msgstr "" "šifriranju piškotkov; ne rabite si ga zapomniti." #: setup/lib/index.lib.php:253 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Bzip2 compression " -#| "and decompression[/a] requires functions (%s) which are unavailable on " -#| "this system." +#, php-format msgid "" "%sBzip2 compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Stiskanje in " -"razpenjanje Bzip2[/a] potrebuje funkcije (%s), ki na tem sistemu niso na " -"voljo." +"%sStiskanje in razširjanje Bzip2%s potrebuje funkcije (%s), ki na tem " +"sistemu niso na voljo." #: setup/lib/index.lib.php:255 msgid "" @@ -8965,23 +8968,18 @@ msgstr "" "vašem strežniku." #: setup/lib/index.lib.php:256 -#, fuzzy, php-format -#| msgid "You should use SSL connections if your web server supports it" +#, php-format msgid "This %soption%s should be enabled if your web server supports it." -msgstr "Uporabite povezave SSL, če jih vaš spletni strežnik podpira" +msgstr "Ta %smožnost%s naj bo omogočena, če jo vaš spletni strežnik podpira." #: setup/lib/index.lib.php:258 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]GZip compression and " -#| "decompression[/a] requires functions (%s) which are unavailable on this " -#| "system." +#, php-format msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Stiskanje in " -"razpenjanje GZip[/a] zahteva funkcije (%s), ki na tem sistemu niso na voljo." +"%sStiskanje in razširjanje GZip%s zahteva funkcije (%s), ki na tem sistemu " +"niso na voljo." #: setup/lib/index.lib.php:260 #, php-format @@ -8990,21 +8988,19 @@ msgid "" "invalidation if %ssession.gc_maxlifetime%s is lower than its value " "(currently %d)." msgstr "" +"%sVeljavnost prijavnega piškotka%s večja od 1440 sekund lahko povzroči " +"naključno razvrednotenje seje, če je %ssession.gc_maxlifetime%s nižji od " +"njegove vrednosti (trenutno %d)." #: setup/lib/index.lib.php:262 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] " -#| "should be set to 1800 seconds (30 minutes) at most. Values larger than " -#| "1800 may pose a security risk such as impersonation." +#, php-format msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" -"[a@?page=form&formset=features#tab_Security]Veljavnost prijavnega piškotka[/" -"a] naj bo nastavljena na največ 1800 sekund (30 minut). Vrednosti večje od " -"1800 lahko predstavljajo varnostno tveganje, kot je pretvarjanje za drugo " -"osebo." +"%sVeljavnost prijavnega piškotka%s naj bo nastavljena na največ 1800 sekund " +"(30 minut). Vrednosti večje od 1800 lahko predstavljajo varnostno tveganje, " +"kot je pretvarjanje za drugo osebo." #: setup/lib/index.lib.php:264 #, php-format @@ -9012,16 +9008,11 @@ msgid "" "%sLogin cookie validity%s must be set to a value less or equal to %sLogin " "cookie store%s." msgstr "" +"%sVeljavnost prijavnega piškotka%s mora biti določena na vrednost manjšo ali " +"enako %sShrambi prijavnih piškotkov%s." #: setup/lib/index.lib.php:266 -#, fuzzy, php-format -#| msgid "" -#| "If you feel this is necessary, use additional protection settings - [a@?" -#| "page=servers&mode=edit&id=%1$d#tab_Server_config]host " -#| "authentication[/a] settings and [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#, 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 " @@ -9029,21 +9020,12 @@ msgid "" "of users, including you, are connected to." msgstr "" "Če menite, da je to potrebno, uporabite dodatne nastavitve zaščite – " -"nastavitve [a@?page=servers&mode=edit&id=%1$d#tab_Server_config]" -"overovitve gostitelja[/a] in [a@?page=form&formset=features#tab_Security]" -"seznam zaupanih proxyjev[/a]. Kakor koli, zaščita temelječa na IP ni " -"zanesljiva, če vaš IP pripada ISP-ju, na katerega je povezanih tisoče " -"uporabnikov, vključno z vami." +"nastavitve %soverovitve gostitelja%s in %sseznam zaupanih proxyjev%s. Kakor " +"koli, zaščita temelječa na IP ni zanesljiva, če vaš IP pripada ISP-ju, na " +"katerega je povezanih tisoče uporabnikov, vključno z vami." #: setup/lib/index.lib.php:268 -#, fuzzy, php-format -#| msgid "" -#| "You set the [kbd]config[/kbd] authentication type and included username " -#| "and password for auto-login, which is not a desirable option for live " -#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#, php-format msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -9054,61 +9036,44 @@ msgstr "" "Nastavili ste vrsto overovitve [kbd]config[/kbd] in vključili uporabniško " "ime in geslo za samodejno prijavo, kar ni zaželena možnost za gostitelje " "aktivnih strani. Vsakdo, ki ve ali ugane vaš URL phpMyAdmina, lahko " -"neposredno dostopa do vaše plošče phpMyAdmin. Nastavite [a@?page=servers&" -"mode=edit&id=%1$d#tab_Server]vrsto overovitve[/a] na [kbd]cookie[/kbd] " -"ali [kbd]http[/kbd]." +"neposredno dostopa do vaše plošče phpMyAdmin. Nastavite %svrsto overovitve%s " +"na [kbd]cookie[/kbd] ali [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] " -#| "requires functions (%s) which are unavailable on this system." +#, php-format msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Stiskanje Zip[/a] " -"zahteva funkcije (%s), ki na tem sistemu niso na voljo." +"%sStiskanje Zip%s zahteva funkcije (%s), ki na tem sistemu niso na voljo." #: setup/lib/index.lib.php:272 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip decompression[/" -#| "a] requires functions (%s) which are unavailable on this system." +#, php-format msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Razpenjanje Zip[/a] " -"zahteva funkcije (%s), ki na tem sistemu niso na voljo." +"%sRazširjanje Zip%s zahteva funkcije (%s), ki na tem sistemu niso na voljo." #: setup/lib/index.lib.php:296 -#, fuzzy -#| msgid "You should use SSL connections if your web server supports it" msgid "You should use SSL connections if your web server supports it." -msgstr "Uporabite povezave SSL, če jih vaš spletni strežnik podpira" +msgstr "Uporabite povezave SSL, če jih vaš spletni strežnik podpira." #: setup/lib/index.lib.php:306 -#, fuzzy -#| msgid "You should use mysqli for performance reasons" msgid "You should use mysqli for performance reasons." -msgstr "Zaradi zmogljivostnih razlogov uporabljajte mysqli" +msgstr "Zaradi zmogljivostnih razlogov uporabljajte mysqli." #: setup/lib/index.lib.php:331 msgid "You allow for connecting to the server without a password." msgstr "Dovoljujete povezavo s strežnikom brez gesla." #: setup/lib/index.lib.php:351 -#, fuzzy -#| msgid "Key is too short, it should have at least 8 characters" msgid "Key is too short, it should have at least 8 characters." -msgstr "Ključ je prekratek, ima naj vsaj 8 znakov" +msgstr "Ključ je prekratek, ima naj vsaj 8 znakov." #: setup/lib/index.lib.php:358 -#, fuzzy -#| msgid "Key should contain letters, numbers [em]and[/em] special characters" msgid "Key should contain letters, numbers [em]and[/em] special characters." -msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake" +msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake." #: sql.php:569 tbl_replace.php:380 #, php-format @@ -9127,12 +9092,12 @@ msgstr "Prikazovanje poizvedbe SQL" msgid "Validated SQL" msgstr "Preverjen SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Oznaka" @@ -9141,71 +9106,71 @@ msgstr "Oznaka" msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s je bila uspešno spremenjena" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr " Zaradi njegove dolžine
stolpca morda ne bo mogoče urejati " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Odstrani sklic shrambe BLOB" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Dvojiško - ne urejaj" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Naloži v shrambo BLOB" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "in potem" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Nazaj na prejšnjo stran" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "Nadaljuj vstavljanje z %s vrsticami" @@ -9310,12 +9275,12 @@ msgstr "" msgid "Redraw" msgstr "Ponovno nariši" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s že obstaja!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Tabela %1$s je ustvarjena." @@ -9792,11 +9757,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nimate dovolj pravic, da bi bili sedaj tukaj!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil je posodobljen." @@ -9808,6 +9773,12 @@ msgstr "Ime VIEW" msgid "Rename view to" msgstr "Preimenuj pogled v" +#~ msgid "Field navigation using Ctrl+Arrows" +#~ msgstr "Usmerjanje po poljih s ctrl+puščice" + +#~ msgid "Toggle Query Box Visibility" +#~ msgstr "Preklopi vidnost polja za poizvedbe" + #~ msgid "SVG" #~ msgstr "SVG" diff --git a/po/sq.po b/po/sq.po index 71011bad56..a208eb5e94 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Shfaqi të gjithë" @@ -38,17 +38,20 @@ msgstr "" "keni mbyllur dritaren prind ose rregullimet mbrojtëse të shfletuesit tuaj të " "ndalojnë përditësimet nëpërmjet dritareve." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Kërko" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Kërko" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Komenti për databazën: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Komentet e tabelës" @@ -133,7 +136,7 @@ msgstr "Komentet e tabelës" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -148,8 +151,8 @@ msgstr "Emrat e kollonave" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "Lloji" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "Lidhje me" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "Komente" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr " Jo " @@ -222,10 +225,10 @@ msgstr " Jo " #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "Zgjidh gjithçka" msgid "Unselect All" msgstr "Asnjë zgjedhje" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Mungon emri i databazës!" @@ -266,80 +269,80 @@ msgstr "Databazës %s i është ndryshuar emri në %s" msgid "Database %s has been copied to %s" msgstr "Databaza %s është kopjuar tek %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Komanda" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Databaza %s u eleminua." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Asnjë databazë" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopjo databazën në" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Vetëm struktura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura dhe të dhënat" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Vetëm të dhënat" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE para se të kopjohet" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Shto %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerë AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Shto kushte" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Kalo tek databaza e kopjuar" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Collation" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -351,24 +354,24 @@ msgstr "" "Karakteristikat shtesë janë çaktivizuar për sa i takon funksionimit me " "tabelat e lidhura. Për të kuptuar përse, klikoni %skëtu%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Skema relacionale" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -379,33 +382,33 @@ msgstr "rreshta" msgid "Size" msgstr "Madhësia" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "në përdorim" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Krijimi" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Ndryshimi i fundit" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Kontrolli i fundit" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -414,7 +417,7 @@ msgstr[0] "%s tabela(at)" msgstr[1] "%s tabela(at)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -444,7 +447,7 @@ msgid "Descending" msgstr "Në zbritje" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Shfaq" @@ -465,8 +468,8 @@ msgid "Del" msgstr "Fshi" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Ose" @@ -539,17 +542,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s korrispondon(jnë) tek tabela %s" msgstr[1] "%s korrispondon(jnë) tek tabela %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Shfleto" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -594,157 +599,142 @@ msgstr "Tek tabela(at):" msgid "Inside column:" msgstr "Tek fusha:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Shto" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Elemino" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Zbraz" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s u zbraz" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Paraqitja %s u eleminua" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s u eleminua" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Gjurmimi është aktiv." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Gjurmimi nuk është aktiv." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Paraqitje" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikimi" -#: db_structure.php:473 +#: db_structure.php:433 #, fuzzy msgid "Sum" msgstr "Sum" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "N.q.s. të zgjedhur:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Zgjidh gjithçka" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Asnjë zgjedhje" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Eksporto" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Zbraz" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Elemino" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Kontrollo tabelën" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimizo tabelën" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Riparo tabelën" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analizo tabelën" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 #, fuzzy msgid "Data Dictionary" msgstr "Data Dictionary" @@ -753,13 +743,13 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -786,8 +776,8 @@ msgstr "Gjendja" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Veprimi" @@ -834,12 +824,12 @@ msgstr "Kontrollo tabelën" msgid "Database Log" msgstr "Databazat" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -910,7 +900,7 @@ msgstr "Libërshënuesi u fshi." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -933,7 +923,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Mbrapa" @@ -1012,11 +1002,11 @@ msgstr "Emri i host është bosh!" msgid "The user name is empty!" msgstr "Emri i përdoruesit është bosh!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Fjalëkalimi është bosh!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Fjalëkalimi nuk korrispondon!" @@ -1120,115 +1110,121 @@ msgid "Searching" msgstr "Kërko" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "query SQL" #: js/messages.php:85 +#, fuzzy +msgid "Show query box" +msgstr "query SQL" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Shpërfill" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Ndryshimet u ruajtën" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Shiko relacionet" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Relacione të brendshme" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Karakteristikat e përgjithshme të relacionit" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Jo aktiv" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Zgjidh fushën që dëshiron të shohësh" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Gjeneruar nga" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Hën" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Asnjë lloj" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Paraardhësi" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1236,96 +1232,96 @@ msgid "Next" msgstr "Në vazhdim" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gjithsej" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Pri" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Maj" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Qer" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Kor" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Gsh" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Tet" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1333,176 +1329,176 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dhj" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Djl" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Hën" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pre" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Djl" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sht" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Djl" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Hën" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mër" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Enj" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pre" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sht" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "në përdorim" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1577,9 +1573,9 @@ msgid "Comment" msgstr "Komente" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Ndrysho" @@ -1600,15 +1596,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Databazat" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Gabim" @@ -1852,6 +1848,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Shto" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktura" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1918,7 +1940,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Serveri" @@ -1972,7 +1994,7 @@ msgstr "Mesazh nga MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Shpjego SQL" @@ -1984,11 +2006,11 @@ msgstr "Mos shpjego SQL" msgid "Without PHP Code" msgstr "pa kod PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Krijo kodin PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Rifresko" @@ -1997,7 +2019,7 @@ msgstr "Rifresko" msgid "Skip Validate SQL" msgstr "Mos vleftëso SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Vleftëso SQL" @@ -2095,7 +2117,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2119,14 +2141,14 @@ msgid "Select from the web server upload directory %s:" msgstr "directory e upload të server-it web" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Struktura" @@ -2257,7 +2279,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2267,15 +2289,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Ruaj" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Rinis" @@ -2397,136 +2419,132 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Ndysho emrin e databazës në" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Shfaq karakteristikat" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Ruaje me emër..." -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Familja gërmave të file:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Formati" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Kompresim" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2536,71 +2554,71 @@ msgstr "Kompresim" msgid "Put columns names in the first row" msgstr "Vendos emrat e kollonave tek rreshti i parë" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Fushë e përbërë nga" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Fushë e kufizuar nga" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Zëvendëso NULL me" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Rreshta që mbarojnë me" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Rreshta që mbarojnë me" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edicion i Excel" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Emri i file template" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Emri i file template" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Emri i file template" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2608,197 +2626,197 @@ msgstr "Emri i file template" msgid "Dump table" msgstr "%s tabela(at)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Përfshi nëntitullin e tabelës" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Titulli i Tabelës caption" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Nëntitulli i tabelës vazhduese" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Kyçi i etiketës" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "Lloji MIME" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relacione" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Lloji i Eksportit" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Mbishkruaj file(s) ekzistues" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Emri i file template" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Përdor backquotes me emrat e tabelave dhe fushave" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Datat e Krijimit/Përditësimit/Kontrollit" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Përdor shtimet me vonesë" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Ç'aktivo kontrollin e kyçeve të jashtëm" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Përdor shpërfill shtimet" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Lloji i Eksportit" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Përfshi eksportin në një transacion" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Lloji i Eksportit" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "të dhëna CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "General" msgstr "Gjeneruar nga" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2806,206 +2824,206 @@ msgstr "" msgid "Import" msgstr "Eksporto" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Importo files" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "Serveri" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabela" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentet" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Numri i faqes:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentet" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "query SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "query SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "query SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Kronollogjia e SQL" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3013,280 +3031,280 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Gjendja" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tabela" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Përdor fushë teksti" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Zëvendëso të dhënat e tabelës me file" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Vendos emrat e kollonave tek rreshti i parë" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Shto vlerë AUTO_INCREMENT" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Vizualizimi i komenteve të kollonave" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3294,428 +3312,428 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Limitet e rezervave" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Transformo tabelën e renditur sipas" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Lidhje" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Asnjë tabelë" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Defragmento tabelën" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Asnjë databazë" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "Zgjedhja e serverit" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3724,300 +3742,300 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Databazat" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Zgjedhja e serverit" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Riparo tabelën" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Zgjedhja e serverit" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Vizualizimi i komenteve të kollonave" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Instruksione" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "Versioni i MySQL" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "Shfaq tabelat" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Shfaq të gjitha kërkesat" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Statistikat e rreshtave" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4025,122 +4043,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Fjalëkalimi" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Emri i përdoruesit:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Shto/Fshi kollonat e fushës" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Prezgjedhur" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4148,58 +4166,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4220,72 +4238,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcione të eksportimit të databazës" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Të dhëna" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV për të dhëna MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4324,7 +4342,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4353,8 +4371,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Të drejtat" @@ -4366,7 +4384,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4395,18 +4413,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Ndrysho fjalëkalimin" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Asnjë fjalëkalim" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Rifut" @@ -4427,8 +4445,8 @@ msgstr "Krijo një databazë të re" msgid "Create" msgstr "Krijo" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Asnjë e drejtë" @@ -4565,8 +4583,8 @@ msgid "Compression:" msgstr "Kompresim" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Asnjë lloj" @@ -4724,7 +4742,7 @@ msgstr "Rendit sipas kyçit" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4761,8 +4779,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4780,49 +4798,49 @@ msgstr "Zbaton query nga libërshënuesi" msgid "The row has been deleted" msgstr "rreshti u fshi" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Hiq" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "tek query" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Shfaqja e regjistrimeve " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "Gjithsej" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Ndrysho" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Shfaq për printim (me full text)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Shfaq skemën PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Lidhja nuk u gjet" @@ -5246,12 +5264,12 @@ msgid "Data dump options" msgstr "Opcione të eksportimit të databazës" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Dump i të dhënave për tabelën" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktura e tabelës" @@ -5304,9 +5322,9 @@ msgstr "Lloje MIME në dispozicion" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -5452,43 +5470,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "Proceset" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Funksioni" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Kushtet për tabelat e nxjerra" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Kushtet për tabelën" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "LLOJET E MIME PËR TABELËN" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELACIONET PËR TABELËN" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Vetëm struktura" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5523,43 +5541,43 @@ msgstr "Rezultati SQL" msgid "Generated by" msgstr "Gjeneruar nga" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Asnjë databazë" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5610,7 +5628,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5687,7 +5705,7 @@ msgid "Charset" msgstr "Familje gërmash" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binar" @@ -5973,8 +5991,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Emri i përdoruesit" @@ -5993,7 +6011,7 @@ msgid "Variable" msgstr "E ndryshueshme" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Vlerë" @@ -6013,34 +6031,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Çfarëdo përdorues" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Përdor fushë teksti" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Çfarëdo host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Këtë Host" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Përdor Tabelën e Host-it" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6297,11 +6315,11 @@ msgstr "Zbato query SQL tek databaza %s" msgid "Columns" msgstr "Emrat e kollonave" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" @@ -6333,7 +6351,7 @@ msgstr "Shfaq vetëm" msgid "Location of the text file" msgstr "Pozicioni i file" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "directory e upload të server-it web" @@ -6503,21 +6521,21 @@ msgstr "" "Asnjë përshkrim në dispozicion për këtë transformim.
Ju lutem pyet " "autorin, çfarë %s bën." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Shto një fushë të re" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6748,8 +6766,8 @@ msgstr "Karakteristikat e përgjithshme të relacionit" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Përdorues" @@ -6787,7 +6805,7 @@ msgstr "Faqja zyrtare e phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6799,21 +6817,21 @@ msgstr "" "MySQL funksionues me këto zgjedhje është i pambrojtur ndaj sulmeve, dhe ju " "duhet patjetër të korrigjoni këtë vrimë në siguri." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6821,19 +6839,19 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Tani nevoitet një fjalëkalim sekret për file e konfigurimit(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6842,21 +6860,21 @@ msgstr "" "Karakteristikat shtesë janë çaktivizuar për sa i takon funksionimit me " "tabelat e lidhura. Për të kuptuar përse, klikoni %skëtu%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7191,119 +7209,119 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Shfaq dump (skema) e databazave" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Lejon krijimin e tabelave të përkohëshme." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Lejon fshirjen e të dhënave." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Lejon eleminimin e databazave dhe tabelave." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Lejon eleminimin e tabelave." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" "Lejon importimin e të dhënave nga dhe eksportimin e të dhënave në files." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lejon të shtosh përdorues dhe të drejta pa ringarkuar tabelat e privilegjeve." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Lejon futjen dhe mbishkrimin e të dhënave." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Lejon bllokimin e tabelave për thread e momentit." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kufizon numrin e kërkesave që një përdorues mund ti dërgojë server-it në një " "orë." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7311,63 +7329,63 @@ msgstr "" "Kufizon numrin e komandave që mund të ndryshojnë një tabelë apo databazë që " "një përdorues mund të zbatojë në një orë." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nuk ka asnjë efekt tek ky version i MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Lejon ringarkimin e parametrave të server-it dhe risetimin e cache të " "servërve." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "I jep të drejtën një përdoruesi të pyesë se ku gjenden slaves / masters." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nevoitet për replikimin e slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Lejon leximin e të dhënave." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Mundëson hyrjen tek lista komplete e databazave." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Lejon përfundimin e serverit." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7377,159 +7395,159 @@ msgstr "" "nevojshëm për shumë operacione administrimi si përcaktimi i të " "ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Lejon ndryshimin e të dhënave." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Asnjë të drejtë." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Asnjë lloj" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Të drejta relative me tabelat" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "Shënim: emrat e të drejtave të MySQL janë në Anglisht" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Të drejtat e përgjithshme" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Të drejta specifike të databazës" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administrimi" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Limitet e rezervave" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Shënim: Vendosja e këtyre opcioneve në 0 (zero) do të thotë asnjë limit." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Informacione mbi Identifikimin" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Mos ndrysho fjalëkalim" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nuk u gjet asnjë përdorues." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Përdoruesi %s ekziston!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Ke shtuar një përdorues të ri." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Ke rifreskuar lejet për %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ke anulluar të drejtat për %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Fjalëkalimi për përdoruesin %s u ndryshua me sukses." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Në fshirje e sipër të %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Duke ringarkuar të drejtat" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Të drejtat u përditësuan me sukses." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Ndrysho të drejtat" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Hiq" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Çfarëdo" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Paraqitja e përgjithshme e përdoruesve" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Shto një përdorues të ri" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Heq përdoruesit e zgjedhur" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Hiqja të gjitha të drejtat aktive përdoruesve dhe pastaj eleminoi." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7542,92 +7560,92 @@ msgstr "" "drejtave të përdorura nga serveri nëse janë kryer ndryshime manuale. Në këtë " "rast, duhet të %srifreskoni të drejtat%s para se të vazhdoni." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Të drejtat relative të kollonave" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Shto të drejta tek databaza në vazhdim" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Shto të drejta tek tabela në vazhdim" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Krijo një përdorues të ri me të njëjta të drejta dhe ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... mbaj të vjetrin." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... elemino të vjetrin nga tabela e përdoruesve." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... hiq të gjitha të drejtat nga i vjetri e pastaj eleminoje." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Asnjë lloj" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrollo të drejtat për databazën "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Përdoruesit që kanë hyrje tek "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globale" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "specifik i databazës" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "wildcard" @@ -8524,7 +8542,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8934,12 +8952,12 @@ msgstr "" msgid "Validated SQL" msgstr "Vleftëso SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etiketë" @@ -8948,71 +8966,71 @@ msgstr "Etiketë" msgid "Table %1$s has been altered successfully" msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Shfleto opcionet e huaja" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funksioni" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Për shkak të gjatësisë saj,
kjo fushë nuk mund të ndryshohet " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Të dhëna të tipit binar - mos ndrysho" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Shto një rresht të ri" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Mbrapa" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Shto një regjistrim të ri" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Kthehu mbrapa tek kjo faqe" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9116,12 +9134,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Përdoruesi %s ekziston!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s u eleminua" @@ -9618,11 +9636,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Përshkrimi" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nuk ke të drejta të mjaftueshme për të kryer këtë operacion!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profili u rifreskua." diff --git a/po/sr.po b/po/sr.po index dab29ccee8..3ccf879dd2 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal \n" "Language-Team: serbian_cyrillic \n" @@ -16,7 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Прикажи све" @@ -39,17 +39,20 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Претраживање" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "Претраживање" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -125,7 +128,7 @@ msgid "Database comment: " msgstr "Коментар базе:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Коментари табеле" @@ -136,7 +139,7 @@ msgstr "Коментари табеле" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -151,8 +154,8 @@ msgstr "Имена колона" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -164,13 +167,13 @@ msgstr "Тип" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -189,8 +192,8 @@ msgid "Links to" msgstr "Везе ка" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -206,10 +209,10 @@ msgstr "Коментари" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Не" @@ -225,10 +228,10 @@ msgstr "Не" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgstr "Изабери све" msgid "Unselect All" msgstr "ништа" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Име базе није задато!" @@ -269,80 +272,80 @@ msgstr "База %s је преименована у %s" msgid "Database %s has been copied to %s" msgstr "База %s је прекопирана у %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Преименуј базу у" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Наредба" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Преименуј базу у" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "База %s је одбачена." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "База не постоји" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Копирај базу у" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структура и подаци" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Само подаци" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пре копирања" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Додај %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Додај ограничења" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Пребаци се на копирану базу" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Сортирање" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,24 +357,24 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Релациона схема" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Табела" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -382,33 +385,33 @@ msgstr "Редова" msgid "Size" msgstr "Величина" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "се користи" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Направљено" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Последња измена" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Последња провера" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -418,7 +421,7 @@ msgstr[1] "%s табела" msgstr[2] "%s табела" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -448,7 +451,7 @@ msgid "Descending" msgstr "Опадајући" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Прикажи" @@ -469,8 +472,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "или" @@ -544,17 +547,19 @@ msgstr[0] "%s погодака унутар табеле %s" msgstr[1] "%s погодака унутар табеле %s" msgstr[2] "%s погодака унутар табеле %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Преглед" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -600,156 +605,141 @@ msgstr "Унутар табела:" msgid "Inside column:" msgstr "Унутар табела:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Нови запис" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Структура" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Одбаци" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Испразни" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Табела %s је испражњена" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Поглед %s је одбачен" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Табела %s је одбачена" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Поглед" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Репликација" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Укупно" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s је подразумевани погон складиштења на овом MySQL серверу." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Означено:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Означи све" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "ниједно" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Извоз" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "За штампу" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Испразни" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Одбаци" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Провери табелу" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Оптимизуј табелу" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Поправи табелу" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Анализирај табелу" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Речник података" @@ -758,13 +748,13 @@ msgstr "Речник података" msgid "Tracked tables" msgstr "Провери табелу" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -792,8 +782,8 @@ msgstr "Статус" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Акција" @@ -841,12 +831,12 @@ msgstr "Провери табелу" msgid "Database Log" msgstr "База података" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -924,7 +914,7 @@ msgstr "Обележивач је управо обрисан." msgid "Showing bookmark" msgstr "Приказивање маркера" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Направљен маркер %s" @@ -952,7 +942,7 @@ msgstr "" "повећате временска ограничења у PHP-у" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Назад" @@ -1032,11 +1022,11 @@ msgstr "Име домаћина је празно!" msgid "The user name is empty!" msgstr "Име корисника није унето!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Лозинка је празна!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" @@ -1141,113 +1131,119 @@ msgid "Searching" msgstr "Претраживање" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL упит" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL упит" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Складиштења" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Измене су сачуване" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Релација обрисана" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Додата интерна релација" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Грешка: релација није додата." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Грешка: релација већ постоји." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Грешка при снимању координата за Дизајнер." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Опште особине релација" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Онемогућено" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Изаберите референцирани кључ" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Изабери страни кључ" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Изабери поља за приказ" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Направи лозинку" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Направи" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Промени лозинку" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "Подаци" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1255,96 +1251,96 @@ msgid "Next" msgstr "Следећи" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Укупно" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарни" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "мај" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1352,176 +1348,176 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "дец" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Уто" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Уто" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1600,9 +1596,9 @@ msgid "Comment" msgstr "Коментари" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Промени" @@ -1623,15 +1619,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Базе" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Грешка" @@ -1877,6 +1873,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Нови запис" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Структура" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1945,7 +1967,7 @@ msgstr "Неисправан индекс сервера: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Сервер" @@ -1999,7 +2021,7 @@ msgstr "MySQL рече: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Објасни SQL" @@ -2011,11 +2033,11 @@ msgstr "Прескочи објашњавање SQL-a" msgid "Without PHP Code" msgstr "без PHP кода" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Освежи" @@ -2024,7 +2046,7 @@ msgstr "Освежи" msgid "Skip Validate SQL" msgstr "Прескочи проверу SQL-a" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Провери SQL" @@ -2124,7 +2146,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2148,14 +2170,14 @@ msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Структура" @@ -2285,7 +2307,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2295,15 +2317,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Сачувај" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Поништи" @@ -2425,140 +2447,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Преименуј базу у" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Преименуј базу у" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Преименуј базу у" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Уреди следећи ред" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Прикажи особине" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Сачувај као датотеку" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Карактер сет датотеке:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Компресија" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2568,71 +2586,71 @@ msgstr "Компресија" msgid "Put columns names in the first row" msgstr "Стави имена поља у први ред" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Поља ограничена са" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Ескејп карактер      " -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Замени NULL са" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Линије се завршавају са" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Линије се завршавају са" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel издање" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2640,412 +2658,412 @@ msgstr "Шаблон имена датотеке" msgid "Dump table" msgstr "%s табела" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Укључи коментар табеле" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Коментар табеле" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Настављен коментар табеле" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Ознака кључа" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-типови" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Релације" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тип извоза" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Препиши постојеће датотеке" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Користи ' за ограничавање имена поља" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Мод SQL компатибилности" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Датуми креирања/ажурирања/провере" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Користи одложена уметања" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Искључи провере страних кључева" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Користи хексадецимално за BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Игнориши дупликате при уметању" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Максимална дужина направљеног упита" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Тип извоза" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Обави извоз у трансакцији" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Тип извоза" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "Увоз датотека" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Направи" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Увоз" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Увоз датотека" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Сервери" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Табеле" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 #, fuzzy msgid "Tables display options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Број стране:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Документација" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Репликација" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL упит" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL упит" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL упит" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL историјат" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3053,72 +3071,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Статус" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Табела" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Користи текст поље" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3129,213 +3147,213 @@ msgstr "" "ограничења. Ово може бити добар начин увоза великих датотека, али са друге " "стране може покварити трансакције." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Игнориши дуплициране редове" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Замени податке у табели са подацима из датотеке" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Формат датотека за увоз" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Користи кључну реч LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Стави имена поља у први ред" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Број записа (упита) које треба прескочити:" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "Број сортираних редова." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Приказујем коментаре колоне" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "Верзија MySQL клијента" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3343,435 +3361,435 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "База не постоји" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Ограничења ресурса" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Прикажи/сакриј мени с леве стране" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Промени редослед у табели" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Нити поправке" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Основни директоријум података" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Конекције" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Нема табела" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Дефрагментирај табелу" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "верзија PHP-a" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "База не постоји" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "назив сервера" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3780,302 +3798,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "назив базе" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "ИД сервера" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Поправи табелу" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Избор сервера" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Приказујем коментаре колоне" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Име" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Режим аутоматског опоравка" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Прикажи отворене табеле" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Прикажи комплетне упите" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Статистике реда" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4083,122 +4101,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Прикажи отворене табеле" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Лозинка" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Додај/обриши колону" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "Преименуј базу у" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4206,59 +4224,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "Основни директоријум података" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4279,72 +4297,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV користећи LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Опције за извоз базе" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Подаци" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4383,7 +4401,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 #, fuzzy msgid "Events" msgstr "Догађаји" @@ -4413,8 +4431,8 @@ msgid "Designer" msgstr "Дизајнер" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Привилегије" @@ -4426,7 +4444,7 @@ msgstr "Рутине" msgid "Return type" msgstr "Повратни тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4457,18 +4475,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Промени лозинку" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Нема лозинке" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Поновите унос" @@ -4491,8 +4509,8 @@ msgstr "Направи нову базу података" msgid "Create" msgstr "Направи" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Нема привилегија" @@ -4637,8 +4655,8 @@ msgid "Compression:" msgstr "Компресија" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "нема" @@ -4811,7 +4829,7 @@ msgstr "Сортирај по кључу" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4847,8 +4865,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Сакриј" @@ -4866,49 +4884,49 @@ msgstr "Изврши упамћен упит" msgid "The row has been deleted" msgstr "Ред је обрисан" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Обустави" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "у упиту" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Приказ записа" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "укупно" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Промени" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Поглед за штампу (са пуним текстом)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF схему" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Веза није пронађена" @@ -5350,12 +5368,12 @@ msgid "Data dump options" msgstr "Опције за извоз базе" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Приказ података табеле" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Структура табеле" @@ -5412,9 +5430,9 @@ msgstr "Доступни MIME-типови" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Домаћин" @@ -5560,40 +5578,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Процедуре" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Функције" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Ограничења за табеле" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛУ" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИЈЕ ТАБЕЛЕ" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Окидачи" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Структура за поглед (view)" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Структура која замењује поглед" @@ -5629,44 +5647,44 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерисао" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "База не постоји" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "База не постоји" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5718,7 +5736,7 @@ msgstr "Неисправан број поља у CSV улазу на линиј msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Назив табеле" @@ -5797,7 +5815,7 @@ msgid "Charset" msgstr "Карактер сет" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Бинарни" @@ -6082,8 +6100,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Име корисника" @@ -6104,7 +6122,7 @@ msgid "Variable" msgstr "Променљива" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Вредност" @@ -6123,34 +6141,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Било који корисник" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Користи текст поље" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Било који домаћин" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Локални" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Овај сервер" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Користи табелу домаћина" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6406,11 +6424,11 @@ msgstr "Изврши SQL упит(е) на бази %s" msgid "Columns" msgstr "Имена колона" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" @@ -6442,7 +6460,7 @@ msgstr "Види само" msgid "Location of the text file" msgstr "Локација текстуалне датотеке" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "директоријум за слање веб сервера " @@ -6608,22 +6626,22 @@ msgid "" msgstr "" "Нема описа за ову трансформацију.
Молимо питајте аутора шта %s ради." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Погон складиштења" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додај %s поља" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6871,8 +6889,8 @@ msgstr "Опште особине релација" msgid "Protocol version" msgstr "Верзија протокола" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Корисник" @@ -6910,7 +6928,7 @@ msgstr "phpMyAdmin веб сајт" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6922,7 +6940,7 @@ msgstr "" "овим подешавањима, отворен је за упаде, и заиста треба да исправите овај " "сигурносни ризик." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6931,7 +6949,7 @@ msgstr "" "У PHP подешавањима Вам је укључена mbstring.func_overload опција. Ова опција " "је некомпатибилна са phpMyAdmin и може довести до грешака у неким подацима!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6941,7 +6959,7 @@ msgstr "" "скуп знакова. Без екстензије mbstring phpMyAdmin не може исправно да " "раздваја стрингове и то може довести до неочекиваних резултата." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6949,18 +6967,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурациона датотека захтева тајну лозинку (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6969,14 +6987,14 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6985,7 +7003,7 @@ msgstr "" "Верзија ваше PHP MySQL библиотеке %s се разликује од верзије вашег MySQL " "сервера %s. Ово може довести до непредвидљивог понашања." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7327,113 +7345,113 @@ msgstr "Погони складиштења" msgid "View dump (schema) of databases" msgstr "Прикажи садржај (схему) базе" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Укључује све привилегије осим GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Дозвољава измену структура постојећих табела." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Дозвољава измену и одбацивање сачуваних рутина." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Дозвољава креирање нових база и табела." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Дозвољава прављење сачуваних рутина." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Дозвољава креирање нових табела." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Дозвољава креирање привремених табела.." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Дозволи креирање нових погледа." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Дозвољава брисање података." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Дозвољава одбацивање база и табела." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Дозвољава одбацивање табела." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Дозвољава извршавање сачуваних рутина." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Дозвољава увоз података и њихов извоз у датотеке." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозвољава додавање корисника и привилегија без поновног учитавања табела " "привилегија." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Дозвољава креирање и брисање кључева." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Дозвољава уметање и замену података." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Дозвољава закључавање табела текућим процесима." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Ограничава број нових конекција које корисник може та отвори на сат." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ограничава број упита које корисник може да упути серверу за сат." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7441,59 +7459,59 @@ msgstr "" "Ограничава број команди које мењају табеле или базе које корисник може да " "изврши на сат." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ограничава број истовремених конекција које корисник може да има." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Нема ефекта у овој верзији MySQL-a." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Даје право кориснику да пита где су главни/помоћни сервери." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Потребно због помоћних сервера за репликацију." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Дозвољава читање података." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Даје приступ комплетној листи база." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозвољава извршавање SHOW CREATE VIEW упита." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Дозвољава гашење сервера." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7503,158 +7521,158 @@ msgstr "" "Неопходно за већину административних опција као што су подешавање глобалних " "променљивих или прекидање процеса осталих корисника." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозвољава креирање и брисање кључева." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Дозвољава измену података." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Нема привилегија." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "нема" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Напомена: MySQL имена привилегија морају да буду на енглеском " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Глобалне привилегије" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Администрација" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ограничења ресурса" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Подаци о пријави" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Немој да мењаш лозинку" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисник није нађен." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s већ постоји!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Додали сте новог корисника." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Ажурирали сте привилегије за %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Забранили сте привилегије за %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинка за %s је успешно промењена." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Бришем %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ниједан корисник није одабран за брисање!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Поново учитавам привилегије" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Изабрани корисници су успешно обрисани." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Промени привилегије" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Забрани" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Било који" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Преглед корисника" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Омогући" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Додај новог корисника" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Уклони изабране кориснике" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Обустави све активне привилегије корисника и затим их обриши." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Одбаци базе које се зову исто као корисници." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7667,92 +7685,92 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Привилегије везане за колоне" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Додај привилегије на следећој бази" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Додај привилегије на следећој табели" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Промени информације о пријави / Копирај корисника" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Направи новог корисника са истим привилегијама и ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... сачувај старе." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... обриши старе из табела корисника." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... обустави све привилегије старог корисника и затим га обриши." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... обриши старог из табеле корисника и затим поново учитај привилегије." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "База за корисника" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "нема" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Направи базу са истим именом и додај све привилегије" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегије за базу "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Корисници који имају приступ "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "глобално" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Специфично за базу" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "џокер" @@ -8754,7 +8772,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9167,12 +9185,12 @@ msgstr "Приказ као SQL упит" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Назив" @@ -9181,74 +9199,74 @@ msgstr "Назив" msgid "Table %1$s has been altered successfully" msgstr "Изабрани корисници су успешно обрисани." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Прегледај стране вредности" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Функција" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "Због њехове величине, поље
можда нећете моћи да измените" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Бинарни - не мењај" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "и онда" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Уреди следећи ред" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9357,12 +9375,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Табела %s већ постоји!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Табела %s је одбачена" @@ -9858,11 +9876,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Опис" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Није Вам дозвољено да будете овде!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Профил је промењен." diff --git a/po/sr@latin.po b/po/sr@latin.po index 70000b2cbf..e7f01f35c4 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-08-30 19:31+0200\n" "Last-Translator: Vladimir Tošić \n" "Language-Team: serbian_latin \n" @@ -16,7 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Prikaži sve" @@ -39,17 +39,20 @@ msgstr "" "zatvorili matični prozor, ili vaš pretraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "Pretraživanje" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -125,7 +128,7 @@ msgid "Database comment: " msgstr "Komentar baze:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Komentari tabele" @@ -136,7 +139,7 @@ msgstr "Komentari tabele" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -151,8 +154,8 @@ msgstr "Imena kolona" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -164,13 +167,13 @@ msgstr "Tip" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -189,8 +192,8 @@ msgid "Links to" msgstr "Veze ka" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -206,10 +209,10 @@ msgstr "Komentari" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ne" @@ -225,10 +228,10 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgstr "Izaberi sve" msgid "Unselect All" msgstr "ništa" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Ime baze nije zadato!" @@ -269,77 +272,77 @@ msgstr "Baza %s je preimenovana u %s" msgid "Database %s has been copied to %s" msgstr "Baza %s je prekopirana u %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Preimenuj bazu u" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Naredba" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Ukloni bazu" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Ukloni bazu i njen sadržaj" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopiraj bazu u" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktura i podaci" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pre kopiranja" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Dodaj ograničenja" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -351,24 +354,24 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relaciona shema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -379,33 +382,33 @@ msgstr "Redova" msgid "Size" msgstr "Veličina" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "se koristi" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Napravljeno" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Poslednja izmena" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Poslednja provera" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -415,7 +418,7 @@ msgstr[1] "%s tabela" msgstr[2] "%s tabela" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -445,7 +448,7 @@ msgid "Descending" msgstr "Opadajući" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Prikaži" @@ -466,8 +469,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "ili" @@ -541,17 +544,19 @@ msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" msgstr[2] "%s pogodaka unutar tabele %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Pregled" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -597,156 +602,141 @@ msgstr "Unutar tabela:" msgid "Inside column:" msgstr "Unutar tabela:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Novi zapis" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktura" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Odbaci" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Isprazni" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je odbačen" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Pogled" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Ukupno" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "nijedno" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Izvoz" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Isprazni" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Odbaci" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Proveri tabelu" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimizuj tabelu" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Rečnik podataka" @@ -755,13 +745,13 @@ msgstr "Rečnik podataka" msgid "Tracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -789,8 +779,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Akcija" @@ -838,12 +828,12 @@ msgstr "Proveri tabelu" msgid "Database Log" msgstr "Baza podataka" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -921,7 +911,7 @@ msgstr "Obeleživač je upravo obrisan." msgid "Showing bookmark" msgstr "Prikazivanje markera" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Napravljen marker %s" @@ -949,7 +939,7 @@ msgstr "" "povećate vremenska ograničenja u PHP-u" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Nazad" @@ -1029,11 +1019,11 @@ msgstr "Ime domaćina je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije uneto!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" @@ -1138,113 +1128,119 @@ msgid "Searching" msgstr "Pretraživanje" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL upit" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL upit" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Skladištenja" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Izmene su sačuvane" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relacija obrisana" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Dodata interna relacija" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Greška: relacija nije dodata." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Greška: relacija već postoji." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Greška pri snimanju koordinata za Dizajner." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Opšte osobine relacija" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Onemogućeno" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Izaberite referencirani ključ" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Izaberi strani ključ" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Napravi lozinku" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Napravi" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "Podaci" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1252,96 +1248,96 @@ msgid "Next" msgstr "Sledeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "maj" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "avg" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1349,176 +1345,176 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "dec" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sre" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1597,9 +1593,9 @@ msgid "Comment" msgstr "Komentari" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Promeni" @@ -1620,15 +1616,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Baze" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Greška" @@ -1874,6 +1870,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Novi zapis" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktura" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1942,7 +1964,7 @@ msgstr "Neispravan indeks servera: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1996,7 +2018,7 @@ msgstr "MySQL reče: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Objasni SQL" @@ -2008,11 +2030,11 @@ msgstr "Preskoči objašnjavanje SQL-a" msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Osveži" @@ -2021,7 +2043,7 @@ msgstr "Osveži" msgid "Skip Validate SQL" msgstr "Preskoči proveru SQL-a" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Proveri SQL" @@ -2121,7 +2143,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2145,14 +2167,14 @@ msgid "Select from the web server upload directory %s:" msgstr "direktorijum za slanje veb servera " #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Struktura" @@ -2282,7 +2304,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2292,15 +2314,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Sačuvaj" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Poništi" @@ -2422,140 +2444,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Preimenuj bazu u" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Preimenuj bazu u" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Preimenuj bazu u" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Uredi sledeći red" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Prikaži osobine" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Sačuvaj kao datoteku" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Karakter set datoteke:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2565,71 +2583,71 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Stavi imena polja u prvi red" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Polja ograničena sa" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Escape karakter      " -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Zameni NULL sa" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linije se završavaju sa" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Linije se završavaju sa" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel izdanje" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2637,410 +2655,410 @@ msgstr "Šablon imena datoteke" msgid "Dump table" msgstr "%s tabela" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Uključi komentar tabele" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Komentar tabele" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Nastavljen komentar tabele" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Oznaka ključa" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-tipovi" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Tip izvoza" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "Mod SQL kompatibilnosti" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Datumi kreiranja/ažuriranja/provere" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Koristi odložena umetanja" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Isključi provere stranih ključeva" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Koristi heksadecimalno za BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Ignoriši duplikate pri umetanju" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maksimalna dužina napravljenog upita" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Tip izvoza" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Obavi izvoz u transakciji" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Tip izvoza" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "Uvoz datoteka" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Napravi" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Uvoz" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Uvoz datoteka" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Serveri" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabele" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 #, fuzzy msgid "Tables display options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Broj strane:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Replikacija" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL upit" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL upit" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL upit" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL istorijat" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3048,72 +3066,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tabela" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Koristi tekst polje" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -3124,213 +3142,213 @@ msgstr "" "ograničenja. Ovo može biti dobar način uvoza velikih datoteka, ali sa druge " "strane može pokvariti transakcije." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignoriši duplicirane redove" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Zameni podatke u tabeli sa podacima iz datoteke" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Format datoteka za uvoz" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Koristi ključnu reč LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Broj zapisa (upita) koje treba preskočiti:" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "Broj sortiranih redova." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Prikazujem komentare kolone" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "Verzija MySQL klijenta" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3338,435 +3356,435 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "Baza ne postoji" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Ograničenja resursa" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Prikaži/sakrij meni s leve strane" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Promeni redosled u tabeli" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Niti popravke" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Osnovni direktorijum podataka" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Konekcije" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Nema tabela" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Defragmentiraj tabelu" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "verzija PHP-a" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Baza ne postoji" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "naziv servera" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3775,302 +3793,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "naziv baze" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "ID servera" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Popravi tabelu" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazujem komentare kolone" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Ime" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Režim automatskog oporavka" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Prikaži otvorene tabele" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži kompletne upite" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Statistike reda" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4078,122 +4096,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Prikaži otvorene tabele" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/obriši kolonu" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "Preimenuj bazu u" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4201,59 +4219,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "Osnovni direktorijum podataka" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4274,72 +4292,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV koristeći LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcije za izvoz baze" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Podaci" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4378,7 +4396,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 #, fuzzy msgid "Events" msgstr "Događaji" @@ -4408,8 +4426,8 @@ msgid "Designer" msgstr "Dizajner" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegije" @@ -4421,7 +4439,7 @@ msgstr "Rutine" msgid "Return type" msgstr "Povratni tip" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4452,18 +4470,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Promeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Ponovite unos" @@ -4486,8 +4504,8 @@ msgstr "Napravi novu bazu podataka" msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Nema privilegija" @@ -4632,8 +4650,8 @@ msgid "Compression:" msgstr "Kompresija" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "nema" @@ -4806,7 +4824,7 @@ msgstr "Sortiraj po ključu" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4842,8 +4860,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Sakrij" @@ -4861,49 +4879,49 @@ msgstr "Izvrši upamćen upit" msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Promeni" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Pogled za štampu (sa punim tekstom)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Veza nije pronađena" @@ -5345,12 +5363,12 @@ msgid "Data dump options" msgstr "Opcije za izvoz baze" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktura tabele" @@ -5403,9 +5421,9 @@ msgstr "Dostupni MIME-tipovi" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Domaćin" @@ -5551,40 +5569,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedure" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funkcije" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Ograničenja za tabele" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPOVI ZA TABELU" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABELE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Okidači" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struktura za pogled (view)" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Struktura koja zamenjuje pogled" @@ -5620,44 +5638,44 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generisao" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5709,7 +5727,7 @@ msgstr "Neispravan broj polja u CSV ulazu na liniji %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Naziv tabele" @@ -5788,7 +5806,7 @@ msgid "Charset" msgstr "Karakter set" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binarni" @@ -6073,8 +6091,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Ime korisnika" @@ -6095,7 +6113,7 @@ msgid "Variable" msgstr "Promenljiva" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Vrednost" @@ -6114,34 +6132,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Bilo koji domaćin" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Koristi tabelu domaćina" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6397,11 +6415,11 @@ msgstr "Izvrši SQL upit(e) na bazi %s" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" @@ -6433,7 +6451,7 @@ msgstr "Vidi samo" msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "direktorijum za slanje veb servera " @@ -6599,22 +6617,22 @@ msgid "" msgstr "" "Nema opisa za ovu transformaciju.
Molimo pitajte autora šta %s radi." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Pogon skladištenja" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s polja" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6863,8 +6881,8 @@ msgstr "Opšte osobine relacija" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Korisnik" @@ -6902,7 +6920,7 @@ msgstr "phpMyAdmin veb sajt" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6914,7 +6932,7 @@ msgstr "" "ovim podešavanjima, otvoren je za upade, i zaista treba da ispravite ovaj " "sigurnosni rizik." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6924,7 +6942,7 @@ msgstr "" "opcija je nekompatibilna sa phpMyAdmin i može dovesti do grešaka u nekim " "podacima!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6934,7 +6952,7 @@ msgstr "" "skup znakova. Bez ekstenzije mbstring phpMyAdmin ne može ispravno da " "razdvaja stringove i to može dovesti do neočekivanih rezultata." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6942,18 +6960,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguraciona datoteka zahteva tajnu lozinku (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6962,14 +6980,14 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6978,7 +6996,7 @@ msgstr "" "Verzija vaše PHP MySQL biblioteke %s se razlikuje od verzije vašeg MySQL " "servera %s. Ovo može dovesti do nepredvidljivog ponašanja." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7320,113 +7338,113 @@ msgstr "Pogoni skladištenja" msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmenu struktura postojećih tabela." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Dozvoljava pravljenje sačuvanih rutina." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Dozvoli kreiranje novih pogleda." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Dozvoljava izvršavanje sačuvanih rutina." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamenu podataka." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7434,59 +7452,59 @@ msgstr "" "Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " "izvrši na sat." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7496,158 +7514,158 @@ msgstr "" "Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " "promenljivih ili prekidanje procesa ostalih korisnika." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Nema privilegija." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "nema" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Podaci o prijavi" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Nemoj da menjaš lozinku" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zabranili ste privilegije za %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspešno promenjena." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Nijedan korisnik nije odabran za brisanje!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Promeni privilegije" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Zabrani" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7660,92 +7678,92 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na sledećoj bazi" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Pre džokera _ i % treba staviti znak \\ ako ih koristite samostalno" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na sledećoj tabeli" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... obriši stare iz tabela korisnika." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... obustavi sve privilegije starog korisnika i zatim ga obriši." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Baza za korisnika" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "nema" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Proveri privilegije za bazu "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "globalno" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "džoker" @@ -8750,7 +8768,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9163,12 +9181,12 @@ msgstr "Prikaz kao SQL upit" msgid "Validated SQL" msgstr "Proveri SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Naziv" @@ -9177,74 +9195,74 @@ msgstr "Naziv" msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspešno obrisani." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funkcija" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binarni - ne menjaj" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Prikaz kao SQL upit" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "i onda" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Uredi sledeći red" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9353,12 +9371,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s već postoji!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s je odbačena" @@ -9854,11 +9872,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nije Vam dozvoljeno da budete ovde!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil je promenjen." diff --git a/po/sv.po b/po/sv.po index b5c78c11ae..f7a5b16f25 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-21 14:48+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: swedish \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Visa alla" @@ -38,17 +38,20 @@ msgstr "" "föräldrafönstret eller att din webbläsares säkerhetsinställningar blockerar " "uppdateringar mellan fönster." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Sök" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Sök" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "Databaskommentar: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Tabellkommentarer" @@ -135,7 +138,7 @@ msgstr "Tabellkommentarer" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -150,8 +153,8 @@ msgstr "Kolumn-namn" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -163,13 +166,13 @@ msgstr "Typ" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -188,8 +191,8 @@ msgid "Links to" msgstr "Länkar till" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -205,10 +208,10 @@ msgstr "Kommentarer" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Nej" @@ -224,10 +227,10 @@ msgstr "Nej" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -254,7 +257,7 @@ msgstr "Markera alla" msgid "Unselect All" msgstr "Avmarkera alla" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Databasens namn är tomt!" @@ -268,80 +271,80 @@ msgstr "Databas %s har döpts om till %s" msgid "Database %s has been copied to %s" msgstr "Databas %s har kopierats till %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Döp om databasen till" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Kommando" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Döp om databasen till" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har tagits bort." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Inga databaser" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Kopiera databas till" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Enbart struktur" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Struktur och data" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Enbart data" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE före kopiering" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Lägg till %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "Lägg till AUTO_INCREMENT-värde" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Lägg till restriktioner" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Byt till kopierad databas" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Kollationering" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -353,24 +356,24 @@ msgstr "" "Den extra funktionaliteten för att hantera länkade tabeller har " "inaktiverats. %sVisa orsaken%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relationsschema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tabell" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -381,33 +384,33 @@ msgstr "Rader" msgid "Size" msgstr "Storlek" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "används" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Skapades" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Senaste uppdatering" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Senaste kontroll" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgstr[0] "%s tabell(er)" msgstr[1] "%s tabell(er)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "Fallande" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Visa" @@ -467,8 +470,8 @@ msgid "Del" msgstr "Ta bort" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Eller" @@ -541,17 +544,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s träff(ar) i tabell %s" msgstr[1] "%s träff(ar) i tabell %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Visa" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -596,156 +601,141 @@ msgstr "I tabell(er):" msgid "Inside column:" msgstr "I fält:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Lägg till" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Struktur" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Radera" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Töm" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har tömts" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "Vyn %s har tagits bort" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har tagits bort" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentation%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Vy" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikering" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Summa" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s är standardlagringsmotorn på denna MySQL-server." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Med markerade:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Markera alla" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Avmarkera alla" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Markera ooptimerade" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Exportera" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Töm" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Radera" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Kontrollera tabell" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimera tabell" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Reparera tabell" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Analysera tabell" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Datalexikon" @@ -754,13 +744,13 @@ msgstr "Datalexikon" msgid "Tracked tables" msgstr "Hoppa över låsta tabeller" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -788,8 +778,8 @@ msgstr "Status" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Åtgärd" @@ -837,12 +827,12 @@ msgstr "Kontrollera tabell" msgid "Database Log" msgstr "Databas" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -920,7 +910,7 @@ msgstr "Bokmärket har tagits bort." msgid "Showing bookmark" msgstr "Visar bokmärke" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Bokmärket %s har skapats" @@ -948,7 +938,7 @@ msgstr "" "tidsbegränsningar." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Bakåt" @@ -1028,11 +1018,11 @@ msgstr "Värdnamnet är tomt!" msgid "The user name is empty!" msgstr "Användarnamnet är tomt!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Lösenordet är tomt!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Lösenorden är inte lika!" @@ -1138,114 +1128,122 @@ msgid "Searching" msgstr "Sök" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL-frågeruta" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL-frågeruta" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Motorer" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Ändringarna har sparats" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Relation borttagen" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Främmande nyckel-relation tillagd" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Intern relation tillagd" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Fel: Relation inte tillagd." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Fel: Relation finns redan." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Fel vid sparande av koordinater för Designer." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Allmänna relationsfunktionaliteter" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Inaktiverat" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Välj refererad nyckel" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Välj främmande nyckel" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Välj den primära nyckeln eller en unik nyckel" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Välj fält som ska visas" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generera lösenord" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generera" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Byt lösenord" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Mån" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Donera" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Föregående" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1253,96 +1251,96 @@ msgid "Next" msgstr "Nästa" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Totalt" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binär" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mars" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "april" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "maj" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "juni" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "juli" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "augusti" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "oktober" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "januari" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "februari" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "april" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1350,178 +1348,178 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "juni" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "juli" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "augusti" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "september" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "oktober" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "november" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "december" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sön" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Mån" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Tis" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fre" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Lör" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sön" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Mån" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Tis" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Tors" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lör" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "används" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1598,9 +1596,9 @@ msgid "Comment" msgstr "Kommentar" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Ändra" @@ -1623,15 +1621,15 @@ msgstr "" "Indexen %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas " "bort." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fel" @@ -1882,6 +1880,32 @@ msgstr "Ladda ner fil" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Lägg till" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Struktur" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1950,7 +1974,7 @@ msgstr "Ogiltigt serverindex: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -2008,7 +2032,7 @@ msgstr "MySQL sa: " msgid "Failed to connect to SQL validator!" msgstr "Kunde inte ansluta till MySQL-server" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Förklara SQL-kod" @@ -2020,11 +2044,11 @@ msgstr "Utan SQL-förklaring" msgid "Without PHP Code" msgstr "Utan PHP-kod" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Skapa PHP-kod" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Uppdatera" @@ -2033,7 +2057,7 @@ msgstr "Uppdatera" msgid "Skip Validate SQL" msgstr "Utan SQL-validering" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Validera SQL-kod" @@ -2133,7 +2157,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2157,14 +2181,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Uppladdningskatalog på webbserver" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Struktur" @@ -2296,7 +2320,7 @@ msgid "Set value: %s" msgstr "Ange värde: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Återställ standardvärde" @@ -2306,15 +2330,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Spara" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Återställ" @@ -2456,112 +2480,108 @@ msgid "Confirm DROP queries" msgstr "Bekräfta DROP-frågor" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Visningsalternativ för databaser" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Flik som visas när man går till en databas" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Standard databasflik" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Flik som visas när man går till en server" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Standard serverflik" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Flik som visas när man går till en tabell" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Standard tabellflik" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy msgid "Show binary contents as HEX by default" msgstr "Visa binärt innehåll" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 #, fuzzy msgid "Show binary contents as HEX" msgstr "Visa binärt innehåll" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Visa databaslista som en lista istället för en listkontroll" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Visa databaser som en lista" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Visa serverlista som en lista istället för en listkontroll" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Visa servrar som en lista" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Ändra nästa rad" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Visningsfunktionaliteter" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Ignorera fel" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Ignorera fel" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2569,32 +2589,32 @@ msgstr "" "Ange antalet sekunder som ett skript har tillåtelse att köra ([kbd]0[/kbd] " "för ingen begränsning)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Max körtid" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Spara som fil" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Filens teckenuppsättning" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Komprimering" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2604,70 +2624,70 @@ msgstr "Komprimering" msgid "Put columns names in the first row" msgstr "Ange fältnamn på första raden" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Fälten omges av" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Specialtecken i fält föregås av" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Ersätt NULL med" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Ta bort CRLF-tecken i fält" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Raderna avslutas med" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Raderna avslutas med" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-version" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Mall för databasnamn" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Mall för servernamn" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Mall för tabellnamn" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2675,116 +2695,116 @@ msgstr "Mall för tabellnamn" msgid "Dump table" msgstr "%s tabell(er)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Inkludera tabellrubrik" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Tabellrubrik" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Fortsatt tabellrubrik" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Etikett" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-typ" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Relationer" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Export-typ" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Spara på server" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Skriv över befintlig fil(er)" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Kom ihåg mall för filnamn" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Använd bakåtcitat runt tabell- och fältnamn" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitet" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Skapad/Uppdaterad/Kontrollerad datum" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Använd fördröjda infogningar" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Stäng av kontroll av främmande nycklar" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "Använd hexadecimal för BLOB" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Använd IGNORE i infogningar" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Maximal längd på skapad fråga" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Export-typ" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Inneslut export i en transaktion" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Standard för export" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "Tvinga säkrad anslutning vid användning av phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Tvinga SSL-anslutning" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2792,190 +2812,190 @@ msgstr "" "Sorteringsordning för poster i en främmande nyckel-listruta; [kbd]content[/" "kbd] är refererad data, [kbd]id[/kbd] är nyckelvärdet" -#: libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Ordning i främmande nyckel-listruta" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "En listruta kommer användas om det är färre poster" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Begränsning för främmande nyckel" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Visningsläge" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Anpassa viningsläge" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Anpassa standardalternativ för export" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Redigeringsläge" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Anpassa redigeringsläge" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Standard för export" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Anpassa standardalternativ för export" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funktioner" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generera" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importera" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Standard för import" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Anpassa standardalternativ för import" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Importera / exportera" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Ange kataloger för import och export och alternativ för komprimering" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Visningsalternativ för databaser" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigeringsram" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Anpassa navigeringsramens utseende" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Servrar" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Visningsalternativ för servrar" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tabeller" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Visningsalternativ för tabeller" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Huvudram" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "OpenDocument-text" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Andra grundinställningar" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Inställningar som inte passade någon annan stans" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Sida:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Frågefönster" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Anpassa alternativ för frågefönster" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Säkerhet" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2983,27 +3003,27 @@ msgstr "" "Observera att phpMyAdmin endast är ett användargränssnitt och dess " "funktioner inte begränsar MySQL" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Grundinställningar" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Typ av autentisering" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Typ av autentisering" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Serverkonfiguration" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3011,17 +3031,17 @@ msgstr "" "Advancerad serverkonfiguration, ändra inte dessa alternativ såvida du inte " "vet vad de är till för" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Ange parametrar för anslutning till server" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Konfigurationsfil" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3036,56 +3056,56 @@ msgstr "" "[a@../Documentation.html#linked-tables]infrastruktur för länkade tabeller[/" "a] i dokumentationen" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Anpassa export" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Anpassa import" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Anpassa navigeringsram" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Anpassa huvudram" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-frågor" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL-frågeruta" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "Anpassa länkar som visas i SQL-frågeruta" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL-frågor" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-historik" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3093,49 +3113,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Start" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Anpassa startsida" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Flikar" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Välj hur du vill att flikar ska fungera" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Använd textfältet" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Anpassa export" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Varning" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3143,15 +3163,15 @@ msgstr "" "Aktivera [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a]-komprimering för " "import- och exportoperationer" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Extra parameterar för iconv" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3159,11 +3179,11 @@ msgstr "" "Om aktiverat fortsätter phpMyAdmin att utföra fleruttrycksfrågor även om en " "av frågorna misslyckades" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ignorera fel i fleruttrycksfrågor" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3173,21 +3193,21 @@ msgstr "" "tidsbegränsningen. Detta kan vara ett bra sätt att importera stora filer, " "men det kan bryta transaktioner." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Partiell import: tillåt avbrott" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Ignorera dubblerade rader" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Ersätt data i tabell" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3195,96 +3215,96 @@ msgstr "" "Standardformat; observera att denna lista beror på plats (databas, tabell) " "och endast SQL är alltid tillgängligt" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Format på importerad fil" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "Använd nyckelordet LOCAL" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Ange fältnamn på första raden" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Antal poster (frågor) att hoppa över från början" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Partiell import: hoppa över frågor" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Använd inte AUTO_INCREMENT för nollvärden" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 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:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Antal infogade rader" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Mål för snabbåtkomst-ikon" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Visa logo i vänster ram" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Visa logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Visa val av server högst upp i vänstra ramen" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Visa serverval" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Visa databaser i ett träd" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 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:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Avskiljare för databasträd" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3292,39 +3312,39 @@ msgstr "" "Endast lätt version; visa databaser i ett träd (bestämt av avskiljaren " "definierad nedan)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Visa databaser i ett träd" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "Inaktivera detta om du vill se alla databaser på en gång" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Använd lätt version" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Max djup i tabellträd" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 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:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Avskiljare för tabellträd" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logo-länk URL" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3332,38 +3352,38 @@ msgstr "" "Öppna den länkade sidan i huvudfönstret ([kbd]main[/kbd]) eller i ett nytt " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logo-länk mål" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Framhäv server under muspekaren" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Aktivera framhävning" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Använd mindre grafiskt intensiva flikar" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Lätta flikar" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, 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 "Maximalt antal tecken som används när en SQL-fråga visas" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3374,11 +3394,11 @@ msgstr "" "FALSKT är det lätt att glömma bort att logga ut från andra servrar när man " "är ansluten till flera servrar." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Radera alla cookies vid utloggning" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3386,11 +3406,11 @@ msgstr "" "Anger om föregående inloggningen ska återkallas eller inte vid cookie-" "autentisering" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Återkalla användarnamn" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3402,52 +3422,52 @@ msgstr "" "session, och kommer tas bort så snart webbläsaren stängs. Detta är " "rekommenderat för icke pålitliga miljöer." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Förvaring av inloggnings-cookie" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Giltighet för inloggnings-cookie" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "Max visad SQL-längd" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "Maximalt antal databaser som visas i vänster ram och databaslista" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Max antal databaser" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3457,29 +3477,29 @@ msgstr "" "innehåller fler rader, visas länkar för "Föregående" och "" "Nästa"." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Max antal rader att visa" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Maximalt antal tabeller som visas i tabellista" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Max antal tabeller" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3487,47 +3507,47 @@ 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Minnesgräns" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Visa/Dölj vänster meny" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Sortera om tabellen efter" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Använd endast ikoner, endast text eller båda" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Ikonbaserad navigeringslist" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Använd GZip buffring av utdata för ökad hastighet i HTTP-överföringar" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip buffring av utdata" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3539,46 +3559,46 @@ msgstr "" "[kbd]SMART[/kbd] - innebär fallande ordning för fält av typ TIME, DATE, " "DATETIME och TIMESTAMP, stigande ordning annars" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Standard sorteringsordning" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "Använd persistenta anslutningar till MySQL-databaser" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Persistenta anslutningar" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Ikonbaserad tabelloperationer" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Förhindra att BLOB och BINARY fält ändras" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Skydda binära fält" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3592,120 +3612,120 @@ msgstr "" "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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Permanent frågehistorik" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Antal frågor som spara i historiken" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Längd på frågehistorik" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Flik som visas när man öppnar ett nytt frågefönster" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Standard frågefönsterflik" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Frågefönster" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Frågefönster" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Frågefönster" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" "Välj vilka funktioner som kommer användas för omvandling av teckenuppsättning" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Omvandlingsmotor" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Reparera trådar" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Katalog på servern där exporter kan sparas" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Spara-katalog" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Lämna tomt om inte används" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Ordning för värdautentisering" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Lämna tomt för standard" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Regler för värdautentisering" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Tillåt inloggning utan lösenord" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Tillåt root-inloggning" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3715,19 +3735,19 @@ msgstr "" "hårdvaruautentisering[/a] (inte placerad i din dokumentrotkatalog; förslag: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "SweKey konfigurationsfil" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Autentiseringsmetod att använda" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Typ av autentisering" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3735,11 +3755,11 @@ msgstr "" "Lämna tomt för inget stöd för [a@http://wiki.phpmyadmin.net/pma/bookmark]" "bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Tabell för bokmärken" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3747,31 +3767,31 @@ msgstr "" "Lämna tomt för inget stöd för kolumnkommentarer/mime-typer, förslag: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Tabell för kolumninformation" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "Komprimera anslutning till MySQL-servern" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Komprimera anslutning" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Typ av anslutning till servern, behåll tcp om osäker" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Anslutningstyp" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Lösenord för kontrollanvändare" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3780,19 +3800,19 @@ msgstr "" "information tillgänglig på [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" "[/a]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Kontrollanvändare" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Räkna tabeller vid visning av databaslista" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Räkna tabeller" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3800,11 +3820,11 @@ msgstr "" "Lämna tomt för inget stöd för Designer, förslag: [kbd]pma_designer_coords[/" "kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Tabell för Designer" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3812,28 +3832,28 @@ msgstr "" "Mer information på [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] och [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Inaktivera användning av INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Vilket PHP-tillägg som ska användas; du bör använda mysqli om det stöds" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "PHP-tillägg att använda" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Dölj databaser som matchar reguljärt uttryck (PCRE)" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Dölj databaser" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3841,31 +3861,31 @@ msgstr "" "Lämna tomt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "Tabell för SQL-frågehistorik" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "Värdnamn där MySQL-servern körs" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Serverns värdnamn" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Utloggning URL" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Försök ansluta utan lösenord" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Anslut utan lösenord" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3880,29 +3900,29 @@ msgstr "" "Du kan använda MySQL:s jokertecken (% och _), ange \\ före om du vill " "använda deras bokstavliga instanser, t.ex. använd 'my\\_db' och inte 'my_db'" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Visa endast listade databaser" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Lämna tomt om inte autentisering config används" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Löseenord för autentisering config" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Lämna tomt för inget stöd för PDF-schema, förslag: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF-schema: Tabell för sidor" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3912,21 +3932,21 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] för komplett information. " "Lämna tomt för utan stöd. Förslag: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "databasnamn" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Port som MySQL-servern lyssnar på, lämna tomt för standard" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Serverport" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3934,19 +3954,19 @@ msgstr "" "Lämna tomt för inget 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Tabell för relationer" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "SQL-kommando för att hämta tillgängliga databaser" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES-kommando" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3954,43 +3974,43 @@ msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/" "a] för ett exempel" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Signon sessionsnamn" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Sockel som MySQL-servern lyssnar på, lämna tomt för standard" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Serversockel" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "Komprimera anslutning till MySQL-servern" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "Använd SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Lämna tomt för inget stöd för PDF-schema, förslag: [kbd]pma_table_coords[/" "kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF-schema: tabellkoordinater" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4002,53 +4022,53 @@ msgstr "" "Tabell för att beskriva fält att visa, lämna tomt för inget stöd; förslag: " "[kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Tabell för visa fält" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Uppgift" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4060,25 +4080,25 @@ msgstr "" "Lämna tomt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "Tabell för SQL-frågehistorik" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatisk återställning" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4090,15 +4110,15 @@ msgstr "" "Lämna tomt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Användare för autentisering config" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4106,11 +4126,11 @@ msgstr "" "Inaktivera ifall du vet att dina tabeller pma_* är aktuella. Detta " "förhindrar kompabilitetskontroller och ökar därmed prestanda" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Utförlig kontroll" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4118,22 +4138,22 @@ 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:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Beskrivande namn för denna server" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Ifall en användare ska få se en knapp "visa alla (rader)"" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Tillåt att visa alla rader" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4143,67 +4163,67 @@ 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Visa ändra lösenord-formulär" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Visa skapa databas-formulär" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Visa öppna tabeller" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Visa funktionsfälten i ändra/infoga-läge" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Visa funktionsfält" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" "Visar länk till [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "Visa phpinfo()-länk" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Visa detaljerad MySQL-serverinformation" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Visa SQL-frågor" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Tillåt visning av databas- och tabellstatistik (t.ex. utrymmesanvändning)" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Visa statistik" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4211,11 +4231,11 @@ msgstr "" "Om tooltip används och en databaskommentar är angiven, så byter detta plats " "på kommentaren och det verkliga namnet" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Visa databaskommentar istället för dess namn" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4227,62 +4247,62 @@ msgstr "" "['LeftFrameTableSeparator'] , så endast mappen kallas för detta alias, " "tabellnamnet självt förblir oförändrat" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Visa tabellkommentar istället för dess namn" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Visa tabellkommentarer i tooltip" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 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:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Hoppa över låsta tabeller" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Lösenord" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Användarnamn:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4290,65 +4310,65 @@ msgstr "" "Föreslå ett daabasnamn i "Skapa databas"-formuläret (om möjligt) " "eller behåll textfältet tomt" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Föreslå nytt databasnamn" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "Kolumner för CHAR-textrutor" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "Rader för CHAR-textrutor" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Standard tabellflik" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4360,37 +4380,37 @@ msgstr "" "huvud 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:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "Lista med betrodda proxyservrar för IP allow/deny" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Uppladdningskatalog" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Tillåt sökning i hela databasen" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Använd databassökning" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4400,15 +4420,15 @@ msgstr "" "import.lib.php för standardvärden för hur många frågor ett uttryck kan " "innehålla." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Utförliga fleruttrycksfrågor" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Kontrollera senaste version" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4416,7 +4436,7 @@ msgstr "" "Aktivera [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a]-" "komprimering för import- och exportoperationer" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4445,74 +4465,74 @@ msgid "Signon authentication" msgstr "Ordning för värdautentisering" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV mha LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "OpenDocument-kalkylblad" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Anpassad färg" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Exportalternativ för databas" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Data" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV för MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenDocument-text" @@ -4551,7 +4571,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Händelser" @@ -4580,8 +4600,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegier" @@ -4593,7 +4613,7 @@ msgstr "Rutiner" msgid "Return type" msgstr "Returtyp" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4622,18 +4642,18 @@ msgid "Details..." msgstr "Detaljer..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Byt lösenord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Inget lösenord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Skriv igen" @@ -4656,8 +4676,8 @@ msgstr "Skapa ny databas" msgid "Create" msgstr "Skapa" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Inga privilegier" @@ -4801,8 +4821,8 @@ msgid "Compression:" msgstr "Komprimering" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Inget" @@ -4981,7 +5001,7 @@ msgstr "Sortera efter nyckel" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5016,8 +5036,8 @@ msgstr "Visa binärt innehåll" msgid "Show BLOB contents" msgstr "Visa BLOB-innehåll" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Dölj" @@ -5035,49 +5055,49 @@ msgstr "Utför bokmärkt fråga" msgid "The row has been deleted" msgstr "Raden har raderats" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Döda" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "i fråga" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Visar rader " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Ändra" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Utskriftsvänlig visning (med fullständiga texter)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Visa PDF-schema" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Länk ej funnen" @@ -5554,12 +5574,12 @@ msgid "Data dump options" msgstr "Visningsalternativ för databaser" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Data i tabell" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Struktur för tabell" @@ -5612,9 +5632,9 @@ msgstr "Tillgängliga MIME-typer" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Värd" @@ -5760,40 +5780,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Procedurer" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funktioner" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Restriktioner för dumpade tabeller" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Restriktioner för tabell" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPER FÖR TABELL" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONER FÖR TABELL" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Utlösare" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Struktur för visning" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Ersättningsstruktur för visning" @@ -5829,44 +5849,44 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genererad av" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Inga databaser" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "Inga databaser" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5918,7 +5938,7 @@ msgstr "Ogiltigt antal fält i CSV-indata på rad %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tabellnamn" @@ -5999,7 +6019,7 @@ msgid "Charset" msgstr "Teckenuppsättning" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binär" @@ -6284,8 +6304,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Användarnamn" @@ -6304,7 +6324,7 @@ msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Värde" @@ -6323,34 +6343,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Vilken användare som helst" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Använd textfältet" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Vilken värd som helst" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Denna värd" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Använd värdtabell" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6609,11 +6629,11 @@ msgstr "Kör SQL-fråga/frågor i databasen %s" msgid "Columns" msgstr "Kolumn-namn" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Låt varje användare få tillgång till detta bokmärke" @@ -6645,7 +6665,7 @@ msgstr "Visa endast" msgid "Location of the text file" msgstr "Textfilens plats" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Uppladdningskatalog på webbserver" @@ -6813,22 +6833,22 @@ msgstr "" "Ingen beskrivning för denna omvandling finns tillgänglig.
Vänligen " "fråga upphovsmannen vad %s gör." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Lagringsmotor" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Partitionsdefinition" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Lägg till %s fält" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7082,8 +7102,8 @@ msgstr "Andra grundinställningar" msgid "Protocol version" msgstr "Protokollversion" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Användare" @@ -7120,7 +7140,7 @@ msgstr "phpMyAdmin:s officiella hemsida" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7132,7 +7152,7 @@ msgstr "" "med denna standardinställning och är öppen för intrång, så du bör verkligen " "täppa till detta säkerhetshål." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7142,7 +7162,7 @@ msgstr "" "alternativ är inkompatibelt med phpMyAdmin och kan orsaka att en del data " "förstörs!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7152,7 +7172,7 @@ msgstr "" "flerbitars teckenuppsättning. phpMyAdmin kan inte dela upp strängar korrekt " "utan tillägget mbstring, vilket kan leda till oväntade resultat." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7164,11 +7184,11 @@ msgstr "" "giltighet konfigurerad i phpMyAdmin. På grund av detta kommer din inloggning " "upphöra att gälla tidigare än konfigurerat i phpMyAdmin." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfigurationsfilen behöver nu ett hemligt lösenord (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7178,7 +7198,7 @@ msgstr "" "fortfarande i din phpMyAdmin-katalog. Du borde ta bort den när phpMyAdmin " "har konfigurerats." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7187,14 +7207,14 @@ msgstr "" "Den extra funktionaliteten för att hantera länkade tabeller har " "inaktiverats. %sVisa orsaken%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7203,7 +7223,7 @@ msgstr "" "Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL serverversion %" "s. Detta kan orsaka oförutsägbara beteenden." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7552,113 +7572,113 @@ msgstr "Lagringsmotorer" msgid "View dump (schema) of databases" msgstr "Visa SQL-satser för databaser" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Inkluderar alla privilegier utom GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Tillåter ändring av befintliga tabellers struktur." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Tillåter ändring och borttagning av lagrade rutiner." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Tillåter skapande av nya databaser och tabeller." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Tillåter skapande av lagrade rutiner." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Tillåter skapande av nya tabeller." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Tillåter skapande av temporära tabeller." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Tillåter skapande av nya vyer." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Tillåter borttagning av data." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Tillåter borttagning av databaser och tabeller." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Tillåter borttagning av tabeller." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Tillåter skapande av händelser för händelseschemaläggaren" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Tillåter utförande av lagrade rutiner." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Tillåter import av data från och export av data till filer." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillåter tillägg av användare och privilegier utan omladdning av " "privilegiumtabellerna." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Tillåter skapande och borttagning av index." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Tillåter infogning och ersättning av data." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Tillåter låsning av tabeller för gällande tråd." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Begränsar antalet nya förbindelser användaren kan öppna per timme." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begränsar antalet frågor användaren kan skicka till servern per timme." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7666,59 +7686,59 @@ msgstr "" "Begränsar antalet kommandon, vilka ändrar någon tabell eller databas, som " "användaren kan utföra per timme." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Tillåter visning av processer för alla användare" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Har ingen verkan i denna MySQL-version." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillåter omladdning av serverinställningar och rensning av serverns cache." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Nödvändigt för replikeringsslavar." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Tillåter läsning av data." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Ger tillgång till den fullständiga databaslistan." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Tillåter avstängning av servern." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7728,159 +7748,159 @@ msgstr "" "Nödvändig för de flesta administrativa funktioner, som att sätta globala " "variabler eller döda andra användares trådar." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Tillåter skapande och borttagning av utlösare" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Tillåter ändring av data." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Inga privilegier." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Inget" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Obs! MySQL privilegiumnamn anges på engelska " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Globala privilegier" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administration" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resursbegränsningar" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Inloggningsinformation" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Ändra inte lösenordet" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Hittade ingen användare." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Användaren %s finns redan!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Du har lagt till en ny användare." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har uppdaterat privilegierna för %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har upphävt privilegierna för %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Lösenordet för %s har ändrats." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Tar bort %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Inga användare valda för borttagning!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Laddar om privilegierna" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "De markerade användarna har tagits bort." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Ändra privilegier" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Upphäv" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Vem som helst" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Användaröversikt" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Lägg till ny användare" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Ta bort markerade användare" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Upphäv användarnas alla aktiva privilegier och ta bort användarna efteråt." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Ta bort databaserna med samma namn som användarna." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7893,51 +7913,51 @@ msgstr "" "privilegierna som servern använder ifall manuella ändringar har gjorts. I " "detta fall bör du %sladda om privilegierna%s innan du fortsätter." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Den markerade användaren kunde inte hittas i privilegiumtabellen." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Kolumnspecifika privilegier" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Lägg till privilegier till följande databas" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Jokertecknen _ och % måste föregås av ett \\ för att användas i egentlig " "betydelse" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Lägg till privilegier till följande tabell" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Ändra inloggningsinformation / Kopiera användare" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Skapa en ny användare med samma privilegier och ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... behåll den gamla." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... ta bort den gamla från användartabellerna." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7945,44 +7965,44 @@ msgstr "" " ... ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Databas för användare" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Inget" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Skapa databas med samma namn och ge alla privilegier" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Ge alla privilegier till namn med jokertecken (username\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Bevilja alla privilegier för databas "%s"" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Användare som har tillgång till "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "databasspecifik" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "jokertecken" @@ -8999,7 +9019,7 @@ msgstr "Kunde inte ansluta till MySQL-server" msgid "Could not connect to the target" msgstr "Kunde inte ansluta till MySQL-server" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9517,12 +9537,12 @@ msgstr "Visar SQL-fråga" msgid "Validated SQL" msgstr "Validera SQL-kod" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etikett" @@ -9531,74 +9551,74 @@ msgstr "Etikett" msgid "Table %1$s has been altered successfully" msgstr "Tabell %1$s har ändrats" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Visa främmande värden" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funktion" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " På grund av dess längd,
kanske detta fält inte kan redigeras " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "Ta bort referens till BLOB-förvaringsplats" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binär - ändra inte" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "Ladda upp till BLOB-förvaringsplats" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 #, fuzzy msgid "Show insert query" msgstr "Visar SQL-fråga" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "och sedan" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Ändra nästa rad" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil " "för att flytta vart som helst" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9709,12 +9729,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "Tabell %s finns redan!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Tabell %1$s har skapats." @@ -10212,11 +10232,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Beskrivning" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har inte tillräcklig behörighet för att vara här nu!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profilen har uppdaterats." diff --git a/po/ta.po b/po/ta.po index 9a5d6db166..7499b51364 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" @@ -18,7 +18,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "" @@ -38,17 +38,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "" @@ -133,7 +136,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -146,8 +149,8 @@ msgstr "" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -159,13 +162,13 @@ msgstr "" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -184,8 +187,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -201,10 +204,10 @@ msgstr "" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "" @@ -220,10 +223,10 @@ msgstr "" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -250,7 +253,7 @@ msgstr "" msgid "Unselect All" msgstr "" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "" @@ -264,99 +267,99 @@ msgstr "" msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "தடைகளை சேர்க்க" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -367,33 +370,33 @@ msgstr "" msgid "Size" msgstr "" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -401,7 +404,7 @@ msgstr[0] "" msgstr[1] "" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -431,7 +434,7 @@ msgid "Descending" msgstr "" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "" @@ -452,8 +455,8 @@ msgid "Del" msgstr "" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "" @@ -525,17 +528,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -577,156 +582,141 @@ msgstr "" msgid "Inside column:" msgstr "" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "" @@ -734,13 +724,13 @@ msgstr "" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -766,8 +756,8 @@ msgstr "" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "செயல்" @@ -810,12 +800,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -884,7 +874,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -907,7 +897,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "" @@ -983,11 +973,11 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "" @@ -1072,104 +1062,108 @@ msgid "Searching" msgstr "" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" +msgid "Hide query box" msgstr "" #: js/messages.php:85 +msgid "Show query box" +msgstr "" + +#: js/messages.php:86 #, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr "உள்வரிசை" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "திங்கள்" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1177,94 +1171,94 @@ msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Jan" msgid "January" msgstr "தை" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "பங்குனி" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "சித்திரை" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "வைகாசி" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ஆணி" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ஆடி" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ஆவணி" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ஐப்பசி" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1272,174 +1266,174 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "மார்கழி" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "ஞாயிறு" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "திங்கள்" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "செவ்வாய்" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "வெள்ளி" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "திங்கள்" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "செவ்வாய்" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "புதன்" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "வியாழன்" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "வெள்ளி" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "சனி" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "ஞாயிறு" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "திங்கள்" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "செவ்வாய்" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "புதன்" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "வியாழன்" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "வெள்ளி" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "சனி" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "" @@ -1511,9 +1505,9 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "" @@ -1534,15 +1528,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -1783,6 +1777,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "" @@ -1838,7 +1858,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "" @@ -1892,7 +1912,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "" @@ -1904,11 +1924,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1917,7 +1937,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "" @@ -2015,7 +2035,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2038,14 +2058,14 @@ msgid "Select from the web server upload directory %s:" msgstr "" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2165,7 +2185,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2175,15 +2195,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "" @@ -2304,133 +2324,129 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Add into comments" msgid "Display errors" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2438,440 +2454,440 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 msgid "Open Document" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Action" msgid "Authentication" msgstr "செயல்" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 msgid "SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2879,277 +2895,277 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "புதிய களத்தை சேர்க்க" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "எச்சரிக்கை" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Add into comments" msgid "Display table filter" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3157,414 +3173,414 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3573,287 +3589,287 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3861,119 +3877,119 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -3981,58 +3997,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "புதிய பதிப்பை பார்வையிடவும்" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4053,72 +4069,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4157,7 +4173,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4186,8 +4202,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "" @@ -4199,7 +4215,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4228,18 +4244,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "" @@ -4260,8 +4276,8 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -4375,8 +4391,8 @@ msgid "Compression:" msgstr "" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "" @@ -4520,7 +4536,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4553,8 +4569,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4572,49 +4588,49 @@ msgstr "" msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Add into comments" msgid "Display chart" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "" @@ -5021,12 +5037,12 @@ msgid "Data dump options" msgstr "" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "" @@ -5071,9 +5087,9 @@ msgstr "" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "" @@ -5214,40 +5230,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5280,42 +5296,42 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5364,7 +5380,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5439,7 +5455,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "" @@ -5721,8 +5737,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "" @@ -5741,7 +5757,7 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "" @@ -5760,34 +5776,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6023,11 +6039,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6059,7 +6075,7 @@ msgstr "" msgid "Location of the text file" msgstr "" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "" @@ -6191,22 +6207,22 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s களத்தை சேர்க்க" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." @@ -6368,8 +6384,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "" @@ -6406,7 +6422,7 @@ msgstr "" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6414,21 +6430,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6436,39 +6452,39 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6786,321 +6802,321 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "" -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "புதிய பயனாளரை சேர்க்க" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7109,89 +7125,89 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8073,7 +8089,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8475,12 +8491,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "" @@ -8489,69 +8505,69 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8651,12 +8667,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -9128,11 +9144,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "" diff --git a/po/te.po b/po/te.po index 4eee087b81..b01f0f874f 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-05-26 14:20+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -18,7 +18,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "అన్నీ చూపించు" @@ -39,17 +39,20 @@ msgid "" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "శోధించు" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "శోధించు" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -123,7 +126,7 @@ msgid "Database comment: " msgstr "" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "పట్టిక వ్యాఖ్యలు" @@ -135,7 +138,7 @@ msgstr "పట్టిక వ్యాఖ్యలు" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -150,8 +153,8 @@ msgstr "ఆజ్ఞ" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -163,13 +166,13 @@ msgstr "రకం" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -188,8 +191,8 @@ msgid "Links to" msgstr "" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -205,10 +208,10 @@ msgstr "వ్యాఖ్యలు" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "కాదు" @@ -224,10 +227,10 @@ msgstr "కాదు" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgid "Unselect All" msgstr "" # మొదటి అనువాదము -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "డేటాబేస్ పేరు ఖాళీగా ఉన్నది" @@ -269,103 +272,103 @@ msgstr "" msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "" # మొదటి అనువాదము -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "ఆజ్ఞ" # మొదటి అనువాదము -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Database" msgid "Remove database" msgstr "డేటాబేస్" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "పట్టిక" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -377,33 +380,33 @@ msgid "Size" msgstr "పరిమాణం" # మొదటి అనువాదము -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "వాడుకలో ఉన్నది" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -411,7 +414,7 @@ msgstr[0] "" msgstr[1] "" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -443,7 +446,7 @@ msgstr "అవరోహణ" # మొదటి అనువాదము #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "చూపించు" @@ -465,8 +468,8 @@ msgstr "" # మొదటి అనువాదము #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "లేదా" @@ -534,17 +537,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -588,70 +593,30 @@ msgstr "" msgid "Inside column:" msgstr "" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "" - -# మొదటి అనువాదము -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "ఖాళీ" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -659,88 +624,113 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "చూపుము" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "" # మొదటి అనువాదము -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "మొత్తము" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +# మొదటి అనువాదము +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "ఖాళీ" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "" @@ -749,13 +739,13 @@ msgid "Tracked tables" msgstr "" # మొదటి అనువాదము -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -781,8 +771,8 @@ msgstr "స్థితి" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "చర్య" @@ -825,12 +815,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -899,7 +889,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -922,7 +912,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "వెనుకకి" @@ -999,11 +989,11 @@ msgstr "" msgid "The user name is empty!" msgstr "వాడుకరి పేరులో ఏమీ లేదు" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "సంకేతపదం ఖాళీగా ఉంది!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" @@ -1111,100 +1101,104 @@ msgid "Searching" msgstr "శోధించు" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" +msgid "Hide query box" msgstr "" #: js/messages.php:85 +msgid "Show query box" +msgstr "" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Password" msgid "Change Password" msgstr "సంకేతపదం" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "సోమ" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "" # మొదటి అనువాదము #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" @@ -1212,7 +1206,7 @@ msgstr "క్రితము" # మొదటి అనువాదము #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1220,96 +1214,96 @@ msgid "Next" msgstr "తదుపరి" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "మొత్తం" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Jan" msgid "January" msgstr "జన" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "మార్చి" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "ఏప్రి" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "మే" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "జూన్" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "జూలై" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ఆగ" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "అక్టో" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1317,179 +1311,179 @@ msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "డిసెం" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "ఆది" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "సోమ" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "మంగళ" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "శుక్ర" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "శని" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "ఆది" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "సోమ" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "మంగళ" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "బుధ" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "గురు" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "శుక్ర" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "శని" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "వికీ" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" # మొదటి అనువాదము -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "వాడుకలో ఉన్నది" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1563,9 +1557,9 @@ msgid "Comment" msgstr "వ్యాఖ్య" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "మార్చు" @@ -1586,15 +1580,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -1837,6 +1831,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1894,7 +1914,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "" @@ -1948,7 +1968,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "" @@ -1960,11 +1980,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1973,7 +1993,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "" @@ -2073,7 +2093,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2096,14 +2116,14 @@ msgid "Select from the web server upload directory %s:" msgstr "" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2223,7 +2243,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2233,15 +2253,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "భద్రపరచు" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "" @@ -2362,133 +2382,129 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display logo" msgid "Display errors" msgstr "చిహ్నాన్ని చూపించు" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2496,452 +2512,452 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "సంబంధాలు" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "ఎగుమతి రకం" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export type" msgid "Export type" msgstr "ఎగుమతి రకం" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "German" msgid "General" msgstr "జర్మన్" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 msgid "Open Document" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "పుట సంఖ్య:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "భద్రత" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "ప్రాధమిక అమరికలు" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Action" msgid "Authentication" msgstr "చర్య" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "సేవకి స్వరూపణం" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Server configuration" msgid "Configuration storage" msgstr "సేవకి స్వరూపణం" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL చరిత్ర" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2949,278 +2965,278 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "హెచ్చరిక" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Comments" msgid "Column names in first row" msgstr "వ్యాఖ్యలు" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "చిహ్నాన్ని చూపించు" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Table comments" msgid "Display table filter" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3228,417 +3244,417 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "ఎడమవైపున మెనుని చూపించు/దాచు" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "అనుసంధాన రకం" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3647,28 +3663,28 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3676,261 +3692,261 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "డేటాబేస్" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "గణాంకాలను చూపించు" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3938,120 +3954,120 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "సంకేతపదం" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "వాడుకరిపేరు" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "క్రొత్త డేటాబేస్ పేరును సూచించుము" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Table comments" msgid "Textarea columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4059,58 +4075,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4133,72 +4149,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4237,7 +4253,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4266,8 +4282,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "" @@ -4279,7 +4295,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4308,18 +4324,18 @@ msgid "Details..." msgstr "వివరాలు..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "సంకేతపదం లేదు" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "" @@ -4341,8 +4357,8 @@ msgstr "" msgid "Create" msgstr "సృష్టించు" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -4463,8 +4479,8 @@ msgid "Compression:" msgstr "" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "" @@ -4610,7 +4626,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4644,8 +4660,8 @@ msgid "Show BLOB contents" msgstr "" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "దాచు" @@ -4663,50 +4679,50 @@ msgstr "" msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "మొత్తం" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "మార్చుము" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "" @@ -5115,12 +5131,12 @@ msgid "Data dump options" msgstr "" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "" @@ -5165,9 +5181,9 @@ msgstr "" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "" @@ -5309,40 +5325,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5378,42 +5394,42 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "అమరికలు" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5464,7 +5480,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5542,7 +5558,7 @@ msgid "Charset" msgstr "అక్షరమాల" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "" @@ -5835,8 +5851,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "వాడుకరి పేరు" @@ -5855,7 +5871,7 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "విలువ" @@ -5875,34 +5891,34 @@ msgid "Add slave replication user" msgstr "" # మొదటి అనువాదము -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "ఏ వాడుకరి ఐనను" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "స్థానిక" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6145,11 +6161,11 @@ msgstr "" msgid "Columns" msgstr "వ్యాఖ్యలు" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6181,7 +6197,7 @@ msgstr "" msgid "Location of the text file" msgstr "పాఠ్యపు దస్త్రం యొక్క ప్రాంతం" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "" @@ -6315,24 +6331,24 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "స్పందనలకు చేర్చు" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." @@ -6506,8 +6522,8 @@ msgstr "అమరికలు" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "వాడుకరి" @@ -6544,7 +6560,7 @@ msgstr "" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6552,21 +6568,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6574,39 +6590,39 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6937,326 +6953,326 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "No" msgctxt "None privileges" msgid "None" msgstr "కాదు" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "పరిపాలన" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "ప్రవేశపు సమాచారం" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "" -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "" # మొదటి అనువాదము -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "" # మొదటి అనువాదము -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "ఏదైనను" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "" # మొదటి అనువాదము -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "క్రొత్త వినియోగదారుని చేర్చు" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7265,92 +7281,92 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" # మొదటి అనువాదము -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... పాతదే ఉంచుము" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "No" msgctxt "Create none database for user" msgid "None" msgstr "కాదు" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8238,7 +8254,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8645,12 +8661,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "" @@ -8659,72 +8675,72 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" # మొదటి అనువాదము -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "మరియు తరువాత" # మొదటి అనువాదము -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "" # మొదటి అనువాదము -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8824,12 +8840,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -9310,11 +9326,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "వివరణ" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "" diff --git a/po/th.po b/po/th.po index a67625c229..915fd00f72 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "แสดงทั้งหมด" @@ -34,17 +34,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ค้นหา" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -59,14 +62,14 @@ msgstr "ค้นหา" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -118,7 +121,7 @@ msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "หมายเหตุของตาราง" @@ -129,7 +132,7 @@ msgstr "หมายเหตุของตาราง" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -144,8 +147,8 @@ msgstr "ชื่อคอลัมน์" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -157,13 +160,13 @@ msgstr "ชนิด" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "ว่างเปล่า (null)" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -182,8 +185,8 @@ msgid "Links to" msgstr "เชื่อมไปยัง" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -199,10 +202,10 @@ msgstr "หมายเหตุ" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "ไม่" @@ -218,10 +221,10 @@ msgstr "ไม่" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -248,7 +251,7 @@ msgstr "เลือกทั้งหมด" msgid "Unselect All" msgstr "ไม่เลือกเลย" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 #, fuzzy msgid "The database name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" @@ -263,82 +266,82 @@ msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อ msgid "Database %s has been copied to %s" msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "คำสั่ง" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "ไม่มีฐานข้อมูล" -#: db_operations.php:442 +#: db_operations.php:445 #, fuzzy msgid "Copy database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "เฉพาะข้อมูล" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:483 +#: db_operations.php:486 #, fuzzy msgid "Switch to copied database" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "การเรียงลำดับ" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -349,24 +352,24 @@ msgid "" msgstr "" "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%s" -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "รีเลชันแนล สกีมา" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "ตาราง " #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -377,33 +380,33 @@ msgstr "แถว" msgid "Size" msgstr "ขนาด" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "ใช้อยู่" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "สร้างเมื่อ" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -412,7 +415,7 @@ msgstr[0] "%s ตาราง" msgstr[1] "%s ตาราง" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -442,7 +445,7 @@ msgid "Descending" msgstr "มากไปน้อย" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "แสดง" @@ -463,8 +466,8 @@ msgid "Del" msgstr "ลบ" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "หรือ" @@ -537,17 +540,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" msgstr[1] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "เปิดดู" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -592,157 +597,142 @@ msgstr "ในตาราง:" msgid "Inside column:" msgstr "ในตาราง:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "แทรก" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "โครงสร้าง" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "โยนทิ้ง" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "ลบข้อมูล" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "โยนฟิลด์ %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 #, fuzzy msgid "Replication" msgstr "รีเลชัน" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "ผลรวม" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "เลือกทั้งหมด" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "ไม่เลือกเลย" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "ส่งออก" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "แสดง" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "ลบข้อมูล" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "โยนทิ้ง" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "ตรวจสอบตาราง" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "ปรับแต่งตาราง" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "ซ่อมแซมตาราง" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "วิเคราะห์ตาราง" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "พจนานุกรมข้อมูล" @@ -750,13 +740,13 @@ msgstr "พจนานุกรมข้อมูล" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -783,8 +773,8 @@ msgstr "สถานะ" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "กระทำการ" @@ -831,12 +821,12 @@ msgstr "ตรวจสอบตาราง" msgid "Database Log" msgstr "ฐานข้อมูล" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -905,7 +895,7 @@ msgstr "ลบคำค้นที่จดไว้เรียบร้อย msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -928,7 +918,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "ย้อนกลับ" @@ -1007,11 +997,11 @@ msgstr "ชื่อโฮสต์ยังว่างอยู่!" msgid "The user name is empty!" msgstr "ชื่อผู้ใช้ยังว่างอยู่!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "รหัสผ่านยังว่างอยู่!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "รหัสผ่านไม่ตรงกัน!" @@ -1113,115 +1103,121 @@ msgid "Searching" msgstr "ค้นหา" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "คำค้น SQL" #: js/messages.php:85 +#, fuzzy +msgid "Show query box" +msgstr "คำค้น SQL" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "ไม่สนใจ" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "มุมมองรีเลชัน" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "รีเลชันภายใน" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "ความสามารถด้านรีเลชันทั่วไป" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "ระงับการใช้อยู่" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "เลือกฟิลด์ที่ต้องการแสดง" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "เปลี่ยนรหัสผ่าน" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "สร้างโดย" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "เปลี่ยนรหัสผ่าน" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "จ." #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "ไม่มี" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "ก่อนหน้า" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1229,96 +1225,96 @@ msgid "Next" msgstr "ต่อไป" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "รวม" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " ข้อมูลไบนารี " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "มี.ค." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "เม.ย." -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "พ.ค." -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "มิ.ย." -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ก.ค." -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ส.ค." -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ต.ค." -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1326,176 +1322,176 @@ msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "ธ.ค." -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "อา." -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "จ." -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "อ." -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "ศ." -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "อา." #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "ส." #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "อา." #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "จ." #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "อ." #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "พ." #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "พฤ." #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "ศ." #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "ส." #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ใช้อยู่" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1570,9 +1566,9 @@ msgid "Comment" msgstr "หมายเหตุ" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "แก้ไข" @@ -1593,15 +1589,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "ฐานข้อมูล" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "ผิดพลาด" @@ -1839,6 +1835,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "แทรก" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "โครงสร้าง" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1902,7 +1924,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "เซิร์ฟเวอร์" @@ -1958,7 +1980,7 @@ msgstr "MySQL แสดง: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "อธิบาย SQL" @@ -1970,11 +1992,11 @@ msgstr "ไม่ต้องอธิบาย SQL" msgid "Without PHP Code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "เรียกใหม่" @@ -1983,7 +2005,7 @@ msgstr "เรียกใหม่" msgid "Skip Validate SQL" msgstr "ไม่ต้องตรวจสอบ SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "ตรวจสอบ SQL" @@ -2081,7 +2103,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2105,14 +2127,14 @@ msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "โครงสร้าง" @@ -2243,7 +2265,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2253,15 +2275,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "บันทึก" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "เริ่มใหม่" @@ -2383,136 +2405,132 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "สถิติฐานข้อมูล" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "ความสามารถด้านการแสดงผล" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "ส่งมาเป็นไฟล์" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "ชุดอักขระของไฟล์ (character set):" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "รูปแบบ" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "บีบอัดข้อมูล" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2522,69 +2540,69 @@ msgstr "บีบอัดข้อมูล" msgid "Put columns names in the first row" msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "คร่อมฟิลด์ด้วย" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "เครื่องหมายสำหรับ escape char" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "แทนที่ NULL เป็น" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "จบแถวด้วย" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "จบแถวด้วย" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2592,200 +2610,200 @@ msgstr "รูปแบบของชื่อไฟล์" msgid "Dump table" msgstr "%s ตาราง" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "คำอธิบายตาราง" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 #, fuzzy #| msgid "Table caption" msgid "Continued table caption" msgstr "คำอธิบายตาราง" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "รีเลชัน" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "ส่งออก" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "เขียนทับแฟ้มที่มีอยู่แล้ว" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "ใส่ 'backqoute' ให้กับชื่อตารางและฟิลด์" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy msgid "Use delayed inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "ไม่มีตาราง" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "ข้อมูล CSV (คั่นด้วยเครื่องหมายลูกน้ำ \",\")" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "General" msgstr "สร้างโดย" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 @@ -2793,205 +2811,205 @@ msgstr "" msgid "Import" msgstr "ส่งออก" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "นำเข้าไฟล์" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "สถิติฐานข้อมูล" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "เซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "ตาราง" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "เอกสารอ้างอิง" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "หมายเลขหน้า:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "เอกสารอ้างอิง" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "คำค้น SQL" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "คำค้น SQL" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "คำค้น SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-history" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2999,281 +3017,281 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "สถานะ" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "ตาราง " -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "เขียนทับด้วยข้อมูลจากไฟล์" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3281,428 +3299,428 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "ขีดจำกัดของทรัพยากร" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "เรียงค่าในตารางตาม" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "การเชื่อมต่อ" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "ไม่มีตาราง" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "จัดระเบียบตาราง" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "ไม่มีฐานข้อมูล" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3711,300 +3729,300 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "ฐานข้อมูล" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "ซ่อมแซมตาราง" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "คำสั่ง" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy msgid "Automatically create versions" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy msgid "Show field types" msgstr "แสดงตาราง" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "แสดงคำค้นแบบเต็ม" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "สถิติของแถว" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4012,122 +4030,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "รหัสผ่าน" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "ชื่อผู้ใช้:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ค่าปริยาย" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4135,58 +4153,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4207,73 +4225,73 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "สถิติฐานข้อมูล" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "ข้อมูล" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "ข้อมูล CSV สำหรับไมโครซอฟต์เอ็กเซล" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4312,7 +4330,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4341,8 +4359,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "สิทธิ" @@ -4354,7 +4372,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4383,18 +4401,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "ไม่มีรหัสผ่าน" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "พิมพ์ใหม่" @@ -4415,8 +4433,8 @@ msgstr "สร้างฐานข้อมูลใหม่" msgid "Create" msgstr "สร้าง" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "ไม่มีสิทธิ" @@ -4552,8 +4570,8 @@ msgid "Compression:" msgstr "บีบอัดข้อมูล" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "ไม่มี" @@ -4711,7 +4729,7 @@ msgstr "เรียงโดยคีย์" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4748,8 +4766,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4768,49 +4786,49 @@ msgstr "" msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "ในคำค้น" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "แสดงระเบียนที่ " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "ทั้งหมด" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "เปลี่ยน" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "แสดงสกีมาของ PDF" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "ไม่พบลิงก์" @@ -5232,12 +5250,12 @@ msgid "Data dump options" msgstr "สถิติฐานข้อมูล" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "dump ตาราง" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "โครงสร้างตาราง" @@ -5290,9 +5308,9 @@ msgstr "MIME-types ที่มีอยู่" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "โฮสต์" @@ -5436,43 +5454,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "โพรเซส" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "ฟังก์ชั่น" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "เฉพาะโครงสร้าง" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5505,43 +5523,43 @@ msgstr "ผลลัพธ์ SQL" msgid "Generated by" msgstr "สร้างโดย" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5592,7 +5610,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5669,7 +5687,7 @@ msgid "Charset" msgstr "ชุดตัวอักษร" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " ข้อมูลไบนารี " @@ -5956,8 +5974,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "ชื่อผู้ใช้" @@ -5976,7 +5994,7 @@ msgid "Variable" msgstr "ตัวแปร" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "ค่า" @@ -5996,34 +6014,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "ผู้ใช้ใดๆ" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "โฮสต์ใดๆ" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "โลคอล" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "โฮสต์นี้" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6278,11 +6296,11 @@ msgstr "ประมวลผลคำค้นบนฐานข้อมูล msgid "Columns" msgstr "ชื่อคอลัมน์" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6314,7 +6332,7 @@ msgstr "ดูอย่างเดียว" msgid "Location of the text file" msgstr "เลือกไฟล์ข้อความจาก" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" @@ -6473,21 +6491,21 @@ msgid "" "author what %s does." msgstr "ไม่ปรากฏรายละเอียดสำหรับการแปลงนี้.
กรุณาสอบถามผู้เขียนว่า, %s ทำอะไร." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6664,8 +6682,8 @@ msgstr "ความสามารถด้านรีเลชันทั่ msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "ผู้ใช้" @@ -6703,7 +6721,7 @@ msgstr "โฮมเพจอย่างเป็นทางการของ msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6714,21 +6732,21 @@ msgstr "" "ซึ่งจะถูกใช้เป็นชื่อปริยายซึ่งมีสิทธิพิเศษ. เซิร์ฟเวอร์ MySQL ที่ทำงานด้วยค่าปริยายนี้ อาจถูกบุกรุกได้ " "คุณควรจะแก้ไขรูรั่วอันนี้ทันที เพื่อความปลอดภัย" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6736,18 +6754,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6755,21 +6773,21 @@ msgid "" msgstr "" "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%s" -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7104,331 +7122,331 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 #, fuzzy msgid "Allows creating stored routines." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "อนุญาตให้สร้างตารางชั่วคราว." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 #, fuzzy msgid "Allows creating new views." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "อนุญาตให้ลบข้อมูล" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "อนุญาตให้ทิ้งตาราง" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" "จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "ไม่มีผลใน MySQL รุ่นนี้" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "อนุญาตให้อ่านข้อมูลได้." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "อนุญาตให้เปลี่ยนข้อมูลได้." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "ไม่มีสิทธิใดๆ." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "ไม่มี" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "การดูแลระบบ" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "ขีดจำกัดของทรัพยากร" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "ข้อมูลล็อกอิน" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ไม่พบผู้ใช้ใดๆ." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "คุณได้เพิกถอนสิทธิของ %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "กำลังลบ %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "แก้ไขสิทธิ" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "เพิกถอน" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "ใดๆ" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "มอบสิทธิ" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "เพิ่มผู้ใช้ใหม่" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "ถอนผู้ใช้ที่เลือก" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7437,91 +7455,91 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... เก็บของเก่าไว้." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "ไม่มี" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "ตรวจสอบสิทธิสำหรับฐานข้อมูล "%s"." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "โกลบอล" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "ไวล์การ์ด" @@ -8414,7 +8432,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8824,12 +8842,12 @@ msgstr "" msgid "Validated SQL" msgstr "ตรวจสอบ SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "ป้ายชื่อ" @@ -8838,72 +8856,72 @@ msgstr "ป้ายชื่อ" msgid "Table %1$s has been altered successfully" msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "ฟังก์ชั่น" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "เนื่องจากความยาวของมัน
ฟิลด์นี้ ไม่อาจแก้ไขได้" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " ข้อมูลไบนารี - ห้ามแก้ไข " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: tbl_change.php:1052 +#: tbl_change.php:1054 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9007,12 +9025,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" @@ -9505,11 +9523,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "รายละเอียด" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "คุณไม่มีสิทธิที่จะเข้ามาตรงนี้!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "ปรับปรุงโพรไฟล์เรียบร้อยแล้ว" diff --git a/po/tr.po b/po/tr.po index 1621c790b3..4d95fb241e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" -"PO-Revision-Date: 2010-09-16 18:39+0200\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" +"PO-Revision-Date: 2010-10-04 21:24+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Tümünü göster" @@ -38,17 +38,20 @@ msgstr "" "olabilirsiniz ya da tarayıcınızın güvenlik ayarları çapraz-pencere " "güncellemelerini engellemek için yapılandırılmıştır." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Ara" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Ara" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Veritabanı yorumu: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Tablo yorumları" @@ -133,7 +136,7 @@ msgstr "Tablo yorumları" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -146,8 +149,8 @@ msgstr "Sütun" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -159,13 +162,13 @@ msgstr "Türü" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Boş" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -184,8 +187,8 @@ msgid "Links to" msgstr "Bağlantı verilen" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -201,10 +204,10 @@ msgstr "Yorumlar" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Hayır" @@ -220,10 +223,10 @@ msgstr "Hayır" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -250,7 +253,7 @@ msgstr "Tümünü Seç" msgid "Unselect All" msgstr "Tüm Seçimi Kaldır" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Veritabanı adı boş!" @@ -264,77 +267,77 @@ msgstr "%s veritabanı %s olarak yeniden adlandırıldı" msgid "Database %s has been copied to %s" msgstr "%s veritabanı %s veritabanına kopyalandı" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Komut" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Veritabanını kaldır" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "%s veritabanı kaldırıldı." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Veritabanını kaldır (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Veritabanını şuraya kopyala:" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Sadece yapı" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Yapı ve veri" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Sadece veri" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" -msgstr "%s komutu ekle" +msgstr "%s ekle" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Kısıtlamaları ekle" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Kopyalanmış veritabanına geç" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" -msgstr "Karşılaştırma" +msgstr "Tanımlama" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -343,66 +346,66 @@ msgstr "" "phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. Nedenini öğrenmek " "için %sburaya%s tıklayın." -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" -msgstr "İlişkisel şemayı dışa aktar veya düzenle" +msgstr "Bağlantılı şemayı dışa aktar veya düzenle" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tablo" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 msgid "Rows" -msgstr "Satır" +msgstr "Satırlar" #: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" msgstr "Boyut" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "kullanımda" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Oluşturma" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Son güncellenme" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Son kontrol" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tablo" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -432,7 +435,7 @@ msgid "Descending" msgstr "Büyükten Küçüğe" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Göster" @@ -453,8 +456,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Veya" @@ -521,17 +524,19 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s eşleşme, %s tablosu içinde" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Gözat" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -572,69 +577,30 @@ msgstr "Tablo içindeki(ler):" msgid "Inside column:" msgstr "İç sütun:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Ekle" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Yapı" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Kaldır" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Boşalt" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "%s tablosu boşaltıldı" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "%s görünümü kaldırıldı" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "%s tablosu kaldırıldı" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "İzleme aktif." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "İzleme aktif değil." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -642,87 +608,111 @@ msgid "" msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Görünüm" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Kopya Etme" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Toplam" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Seçilileri:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Tümünü Seç" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Hiçbirini Seçme" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Dışa Aktar" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Boşalt" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Kaldır" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Tabloyu kontrol et" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Tabloyu uyarla" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Tabloyu onar" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Tabloyu incele" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Veri sözlüğü" @@ -730,13 +720,13 @@ msgstr "Veri sözlüğü" msgid "Tracked tables" msgstr "İzlenen tablolar" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -762,8 +752,8 @@ msgstr "Durum" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Eylem" @@ -806,12 +796,12 @@ msgstr "Tabloyu izle" msgid "Database Log" msgstr "Veritabanı Günlüğü" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "\"%s\" sütunu için değerler" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "Her bir değeri ayrı alana girin." @@ -889,7 +879,7 @@ msgstr "İşaretleme silindi." msgid "Showing bookmark" msgstr "İşaret gösteriliyor" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "İşaretleme %s oluşturuldu" @@ -917,7 +907,7 @@ msgstr "" "biteremeyeceği anlamına gelir." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Geri" @@ -996,11 +986,11 @@ msgstr "Anamakine adı boş!" msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" @@ -1081,100 +1071,106 @@ msgid "Searching" msgstr "Aranıyor" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "Sorgu Kutusu Görünürlüğünü Değiştir" +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "Sorgu kutusunu gizle" #: js/messages.php:85 +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "Sorgu kutusunu göster" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "Sıralı Düzenleme" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Bağlantı silindi" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY bağlantısı eklendi" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Dahili bağlantı eklendi" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Hata: Bağlantı eklenmedi." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Hata: bağlantı zaten var." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Tasarımcı düzenlemelerini kaydetme hatası." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Genel bağlantı özellikleri" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Etkisiz" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Lütfen birincil anaktarı veya benzersiz anahtarı seçin" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "Göstermek için sütun seçin" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "Parola üret" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Üret" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "Parola Değiştir" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "Daha Fazla" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "Bitti" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "Önceki" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1182,231 +1178,231 @@ msgid "Next" msgstr "Sonraki" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "Bugün" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "Ocak" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "Şubat" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "Mart" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "Nisan" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Mayıs" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "Haziran" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "Temmuz" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "Ağustos" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "Eylül" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "Ekim" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "Kasım" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Ara" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "Pazar" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "Pazartesi" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "Salı" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "Çarşamba" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "Perşembe" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "Cuma" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Salı" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Cu" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Ctesi" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "Paz" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "Ptesi" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "Ça" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "Cu" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "Ctesi" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "Hs" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "Saat" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "Dakika" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "Saniye" @@ -1483,9 +1479,9 @@ msgid "Comment" msgstr "Yorum" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Düzenle" @@ -1508,15 +1504,15 @@ msgstr "" "İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün " "olabilir." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Veritabanları" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Hata" @@ -1759,6 +1755,32 @@ msgstr "Dosyayı indir" msgid "Could not open file: %s" msgstr "Açılamayan dosya: %s" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Ekle" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Yapı" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "Sorgu istatistikleri" @@ -1824,7 +1846,7 @@ msgstr "" "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırmanızı gözden " "geçirin." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Sunucu" @@ -1878,7 +1900,7 @@ msgstr "MySQL çıktısı: " msgid "Failed to connect to SQL validator!" msgstr "SQL onaylayıcısına bağlanma başarısız oldu!" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL'i açıkla" @@ -1890,11 +1912,11 @@ msgstr "SQL Açıklamasını atla" msgid "Without PHP Code" msgstr "PHP Kodsuz" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP Kodu oluştur" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Yenile" @@ -1903,7 +1925,7 @@ msgstr "Yenile" msgid "Skip Validate SQL" msgstr "SQL Onaylamayı atla" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL'i onayla" @@ -2001,7 +2023,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2024,14 +2046,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "yapı" @@ -2151,7 +2173,7 @@ msgid "Set value: %s" msgstr "Ayar değeri: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Varsayılan değeri geri yükle" @@ -2161,15 +2183,15 @@ msgstr "Bu değeri özelleştirmek için kullanıcılara izin ver" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Kaydet" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Sıfırla" @@ -2308,18 +2330,14 @@ msgid "Confirm DROP queries" msgstr "DROP sorgularını onayla" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "Ctrl+Okları kullanarak alan rehberliği" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "SQL Hata Ayıklama" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "Varsayılan görüntü talimatı" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" @@ -2327,83 +2345,83 @@ msgstr "" "[kbd]yatay[/kbd], [kbd]dikey[/kbd] veya hangi dikey modelin kullanılması " "için en fazla sayıyı gösteren numara" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "Sütunları değiştirmek/oluşturmak için talimatı göster" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Veritabanı girildiğinde görüntülenen sekme" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Varsayılan veritabanı sekmesi" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Sunucu girildiğinde görüntülenen sekme" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Varsayılan sunucu sekmesi" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Tablo girildiğinde görüntülenen sekme" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Varsayılan tablo sekmesi" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Binari içerikleri varsayılandan HEX olarak göster" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Binari içerikleri HEX olarak göster" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Veritabanı listelemeyi aşağı açılır menü yerine liste olarak gösterir" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Veritabanlarını liste olarak görüntüle" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Sunucuları liste olarak görüntüle" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "Açılır pencere içinde SQL sorgularını düzenle" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "Pencerede düzenle" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 msgid "Display errors" msgstr "Hataları göster" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "Hataları toparla" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "Uyarı, hata ve bilgi mesajları için simgeleri göster" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "Sembolik hatalar" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2411,32 +2429,32 @@ 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:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "En fazla yürütme süresi" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Dosya olarak kaydet" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Dosyanın karakter grubu" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Biçim" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Sıkıştırma" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2444,169 +2462,169 @@ 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:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "Sütunu kapsayan:" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "Sütunu dolduran:" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "NULL'u bunla değiştir:" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "Sütunlardaki CRLF karakterlerini kaldır" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "Sütunu sonlandıran:" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Satırı sonlandıran:" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "Excel yapısı" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Veritabanı adı şablonu" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Sunucu adı şablonu" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Tablo adı şablonu" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 msgid "Dump table" msgstr "Tabloyu dökümle" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Tablo başlığını dahil et" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Tablo başlığı" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Devam eden tablo başlığı" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Etiket anahtarı" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME türü" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" -msgstr "İlişkiler" +msgstr "Bağlantılar" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 msgid "Export method" msgstr "Dışa aktarma yöntemi" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Sunucuda kaydet" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Mevcut dosya(ların)nın üzerine yaz" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Dosya adı şablonunu hatırla" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL uyumluluk kipi" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "Veri eklenirken kullanılacak sözdizimi" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Oluşturma/Güncelleme/Denetleme tarihleri" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Gecikmiş eklemeleri kullan" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Dış anahtar kontrolünü etkisizleştir" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "BLOB için onaltılık düzen kullan" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Yoksayılan eklemeleri kullan" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Oluşturulan sorgunun azami uzunluğu" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 msgid "Export type" msgstr "Dışa aktarma türü" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "İşlem içinde dışa aktarmayı kapsa" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "UTC olarak dışa aktarma zamanı" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "phpMyAdmin kullanırken güvenli bağlantıya zorlar" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "SSL bağlantıya zorla" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2614,160 +2632,160 @@ 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Dış anahtar aşağı açılır düzeni" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Dış anahtar sınırı" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Gözatma modu" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Gözatma modunu özelleştirir" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "Varsayılan seçenekleri özelleştirir" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "Geliştirici" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "phpMyAdmin geliştiricileri için ayarlar" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Düzenleme modu" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Düzenleme modunu özelleştirir" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Dışa aktarma varsayılanları" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Varsayılan dışa aktarma seçeneklerini özelleştirir" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Özellikler" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 msgid "General" msgstr "Genel" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "Bazı çoğunlukla kullanılmış seçenekleri ayarla" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "İçe Aktar" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "İçe aktarma varsayılanları" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Varsayılan genel içe aktarma seçeneklerini özelleştirir" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "İçe Aktar / Dışa Aktar" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 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:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Veritabanlarının görüntü seçenekleri" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Rehber çerçevesi" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Rehber çerçevesinin görünümünü özelleştirir" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Sunucular" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Sunucuların görüntü seçenekleri" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tablolar" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Tabloların görüntü seçenekleri" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Ana çerçeve" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 msgid "Open Document" msgstr "Open Belgesi" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Diğer çekirdek ayarlar" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Başka hiçbir yere uymayan ayarlar" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 msgid "Page titles" msgstr "Sayfa başlığı" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -2777,22 +2795,22 @@ msgstr "" "kullanılabilecek sihirli dizgiler için [a@Documentation.html#cfg_TitleTable]" "belgeden[/a] yararlanın." -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Sorgu penceresi" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Sorgu penceresi seçeneklerini özelleştirir" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Güvenlik" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2800,23 +2818,23 @@ msgstr "" "Lütfen not edin, phpMyAdmin sadece bir arabirimdir ve özellikleri MySQL'i " "sınırlandırmaz" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Temel ayarlar" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 msgid "Authentication" msgstr "Kimlik denetimi" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "Kimlik denetimi ayarları" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Sunucu yapılandırması" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -2824,15 +2842,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:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Sunucu bağlantı parametrelerini girin" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "Yapılandırma depolama" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -2842,54 +2860,54 @@ msgstr "" "yapılandırır, belgelerde [a@Documentation.html#linked-tables]phpMyAdmin " "yapılandırma depolama[/a] kısmına bakın" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "Değişiklikleri izleme" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" "İzlenen değişiklikler veritabanında yapıldı. Yapılandırılmış PMA veritabanı " "gerekir." -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Dışa aktarma seçeneklerini özelleştir" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "İçe aktarma varsayılanlarını özelleştir" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Rehber çerçeveyi özelleştir" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Ana çerçeveyi özelleştir" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL sorguları" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL Sorgu kutusu" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 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:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "SQL sorguları ayarları" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 msgid "SQL Validator" msgstr "SQL Onaylayıcı" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2902,43 +2920,43 @@ msgstr "" "Onaylayıcı[/a], Telif Hakkı 2002 Upright Database Technology. Tüm hakları " "saklıdır.[/em]" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Başlangıç" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Başlangıç sayfasını özelleştirir" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Sekmeler" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Sekmelerin nasıl çalışmasını istiyorsanız seçin" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "Metin alanları" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "Metin giriş alanlarını özelleştirir" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! metni" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "Uyarılar" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "phpMyAdmin tarafından gösterilen bazı uyarılar etkisiz" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -2946,15 +2964,15 @@ msgstr "" "İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/Gzip]gzip" "[/a] sıkıştırma etkin" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "Iconv için ilave parametreler" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -2962,11 +2980,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:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Çoklu ifade hatalarını yoksay" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -2976,21 +2994,21 @@ 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:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Kısmi içe aktarma: yarıda kesmeye izin ver" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Kopya satırları yoksay" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Tablo verisini dosya ile değiştir" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -2998,88 +3016,88 @@ 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "İçe aktarılmış dosyanın biçimi" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "YEREL anahtar kelime kullan" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "İlk satır içindeki sütun adları" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Boş satırları içe aktarma" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "Parasalları içe aktar ($5.00'ı 5.00'a)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 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:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "Başlangıçtan atlanacak sorgu sayısı" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Kısmi içe aktarma: sorguları atla" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "Kaydırıcılar için başlangıç durumu" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Bir defada kaç tane satır eklenebileceğidir" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Eklenmiş satır sayısı" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Hızlı erişim simgesi için hedef" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Logoyu sol çerçevede göster" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Logoyu görüntüle" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Sunucu seçimini sol çerçevenin en üstünde görüntüler" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Sunucu seçimlerini görüntüle" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 msgid "Display table filter" msgstr "Tablo süzgeci göster" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "Veritabanlarını farklı ağaç seviyelerine ayıran dizgidir" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Veritabanı ağaç ayıracı" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3087,40 +3105,40 @@ msgstr "" "Sadece hafif sürümde; veritabanları ağaç içinde görüntülenir (aşağıda " "tanımlanan ayıraçlar tarafından belirlenir)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Veritabanlarını ağaç içinde görüntüle" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" "Eğer tüm veritabanlarını bir kerede görmek isterseniz bunu etkisizleştirin" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Hafif sürümü kullan" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "En fazla tablo ağacı derinliği" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Tabloları farklı ağaç seviyelerine ayıran dizgidir" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Tablo ağacı ayıracı" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "Rehber çerçevedeki logoyu işaret eden URL" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logo bağlantısı URL'si" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3128,38 +3146,38 @@ msgstr "" "Bağlantılı sayfayı ana pencerede ([kbd]ana[/kbd]) veya yeni bir tanede ([kbd]" "yeni[/kbd]) açar" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logo bağlantısı hedefi" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Fare imleci altında sunucuyu vurgula" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Vurgulamalar etkin" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Az grafiksel yoğunlukta sekmeler kullanılır" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Hafif sekmeler" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 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:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "Sütun karakterlerini sınırlandır" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3170,11 +3188,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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Oturum kapatmada tüm tanımlama bilgilerini sil" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3182,11 +3200,11 @@ msgstr "" "Önceki kullanıcı adının hatırlanıp hatırlanmayacağını veya tanımlama " "bilgisiyle kimlik denetimi modunda olmamasını tanımlar" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Kullanıcı adını hatırla" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3198,56 +3216,56 @@ 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:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Oturum açma tanımlama bilgisi depolama" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "Oturum açma tanımlama bilgisi geçerliliği" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 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:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEXT için en büyük metin alanı" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "Ana sayfada simgeleri kullan" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "En fazla görüntülenecek SQL uzunluğu" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "Kullanıcılar yüksek değer ayarlayamazlar" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Sol çerçevede ve veritabanı listesinde görüntülenecek olan en fazla " "veritabanı sayısıdır" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "En fazla veritabanı" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3257,19 +3275,19 @@ msgstr "" "daha fazla satır içeriyorsa, "Önceki" ve "Sonraki" " "bağlantıları gösterilecektir." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 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:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Tablo listesinde görüntülenecek olan en fazla tablo sayısıdır" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "En fazla tablo" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -3277,11 +3295,11 @@ msgstr "" "Eğer tanımlama bilgisi kimlik denetimi için mcrypt eksikse, gösterilen " "varsayılan uyarıyı etkisizleştir" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "mcrypt uyarısı" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3289,44 +3307,44 @@ 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Bellek sınırı" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "Sol silme bağlantısını göster" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "Sağ silme bağlantısını göster" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 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:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "Doğal sıra" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Sadece simgeleri, sadece metni veya her ikisinide kullanır" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Sembolik rehber çubuğu" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 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ımı" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip çıktı arabellekleme" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3334,19 +3352,19 @@ msgstr "" "[kbd]SMART[/kbd] - örn. 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Varsayılan sıralama düzeni" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "MySQL veritabanlarına sürekli bağlantı kullanımı" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Sürekli bağlantılar" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3356,23 +3374,23 @@ msgstr "" "biri bulunamazsa, veritabanı ayrıntıları Yapı sayfasında gösterilen " "varsayılan uyarıyı etkisizleştir" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Eksik phpMyAdmin yapılandırma depolama tabloları" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Sembolik tablo işlemleri" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB ve BINARY sütunlarını düzenlemeye izin vermez" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "Binari sütunlarını koru" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3382,109 +3400,109 @@ msgstr "" "Eğer etkisizleştirilirse, sorgu geçmişini görüntülemek için bu JS-" "programlarından yararlanır (pencere kapatıldığında bilgi kaybolur)." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Kalıcı sorgu geçmişi" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Geçmişte ne kadar sorgu tutulacağıdır" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Sorgu geçmişi uzunluğu" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Yeni sorgu penceresi açıldığında görüntülenen sekme" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Varsayılan sorgu penceresi sekmesi" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "Sorgu penceresi yüksekliği (piksel olarak)" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "Sorgu penceresi yüksekliği" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "Sorgu penceresi genişliği (piksel olarak)" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "Sorgu penceresi genişliği" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 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:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Kaydetme motoru" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 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:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "Başlıkları tekrarla" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "Belge metni yerine yardım düğmesi göster" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "Yardım düğmesi göster" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Dışa aktarmaların sunucu üzerinde kaydedilebileceği dizin" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Kayıt dizini" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Eğer kullanılmayacaksa boş bırakın" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "Anamakine izin düzeni" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Varsayılan için boş bırakın" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "Anamakine izin kuralları" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Parolasız oturum açmaya izin ver" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "Root oturumu açmaya izin ver" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "HTTP Kimlik Denetimi yaparken görüntülemek için Temel Kimlik Denetim alan adı" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "HTTP Alanı" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3493,19 +3511,19 @@ msgstr "" "[a@http://swekey.com]SweKey donanımsal kimlik denetimi[/a] için yapılandırma " "dosyası yolu (belge kök klasörünüzde yer almaz; önerilen: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "SweKey yapılandırma dosyası" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Kullanmak için kimlik denetimi yöntemi" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Kimlik denetimi türü" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3513,11 +3531,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]Yer imi[/a] desteği istenmiyorsa " "boş bırakın, varsayılan: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Yer imi tablosu" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3525,33 +3543,33 @@ msgstr "" "Sütun yorumları/mime türleri istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Sütun bilgisi tablosu" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "MySQL sunucusu bağlantısını sıkıştırır" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Bağlantıyı sıkıştır" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 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:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Bağlantı türü" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Denetim kullanıcısı parolası" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3559,19 +3577,19 @@ msgstr "" "Sınırlı yetkilerle 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Denetim kullanıcısı" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Veritabanı listesini gösterirken tabloları sayar" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Tabloları say" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3579,11 +3597,11 @@ msgstr "" "Tasarımcı desteği istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Tasarımcı tablosu" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3591,29 +3609,29 @@ msgstr "" "[a@http://sf.net/support/tracker.php?aid=1849494]PMA hata izleyici[/a] ve " "[a@http://bugs.mysql.com/19588]MySQL Hataları[/a] üzerine daha fazla bilgi" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA kullanımı etkisiz" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Kullanmak için hangi PHP uzantısı; Eğer destekleniyorsa mysqli " "kullanmalısınız" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Kullanmak için PHP uzantısı" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "Düzenli anlatıma (PCRE) uyan veritabanlarını gizler" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Veritabanlarını gizle" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3621,31 +3639,31 @@ msgstr "" "SQL sorgu geçmişi desteği istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL sorgu geçmişi tablosu" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "MySQL sunucusunun çalıştığı anamakine" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Sunucu anamakine adı" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Oturum kapatma URL'si" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Parolasız bağlanmayı dener" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Parolasız bağlan" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3660,54 +3678,54 @@ msgstr "" "girin ve geri kalanını alfabetik sırada göstermek için sonunda [kbd]*[/kbd] " "kullanın." -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Sadece listelenmiş veritabanları göster" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "Eğer yapılandırma kimlik denetimi kullanılmıyorsa boş bırakın" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "Yapılandırma kimlik den. için parola" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "PDF şeması desteği istenmiyorsa boş bırakın, varsayılan: [kbd]pma_pdf_pages[/" "kbd]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF şeması: sayfalar tablosu" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 "" -"İlişkiler, yer imleri ve PDF özellikleri için kullanılan veritabanı. Tam " +"Bağlantılar, yer imleri ve PDF özellikleri için kullanılan veritabanı. Tam " "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:398 +#: libraries/config/messages.inc.php:397 msgid "Database name" msgstr "Veritabanı adı" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "MySQL sunucusunun dinlemede olduğu bağlantı noktası, varsayılan ayar için " "boş bırakın" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Sunucu bağ.noktası" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3715,19 +3733,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]İlişki bağlantıları[/a] desteği " "istenmiyorsa boş bırakın, varsayılan: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" -msgstr "İlişki tablosu" +msgstr "Bağlantı tablosu" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "Mevcut veritabanları getirmek için SQL komutu" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES komutu" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3735,43 +3753,43 @@ msgstr "" "Örnek için [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]kimlik " "doğrulama türlerine[/a] bakın" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Oturum açma oturumu adı" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Oturum açma URL'si" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Sunucu soketi" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "MySQL sunucusuna bağlantı için SSL etkin" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "SSL kullan" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "PDF şeması desteği istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF şeması: tablo koordinatları" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3779,11 +3797,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:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "Görüntü sütunları tablosu" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -3791,11 +3809,11 @@ msgstr "" "Veritabanı oluşturulduğunda günlüğe ilk satır olarak DROP DATABASE IF EXISTS " "ifadesi eklenecek." -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "DROP DATABASE ifadesi ekle" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -3803,11 +3821,11 @@ msgstr "" "Tablo oluşturulduğunda günlüğe ilk satır olarak DROP TABLE IF EXISTS ifadesi " "eklenecek." -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "DROP TABLE ifadesi ekle" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -3815,20 +3833,20 @@ msgstr "" "Görünüm oluşturulduğunda günlüğe ilk satır olarak DROP VIEW IF EXISTS " "ifadesi eklenecek." -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "DROP VIEW ifadesi ekle" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Yeni sürümler için otomatik oluşturma kullanan ifade listesini tanımlar." -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "İfadelerden izlere" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -3836,11 +3854,11 @@ msgstr "" "SQL sorgu izleme desteği istenmiyorsa boş bırakın, önerilen: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "SQL sorgu izleme tablosu" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -3848,11 +3866,11 @@ msgstr "" "İzleme mekanizması tablolar ve görünümler için otomatik olarak sürümler " "oluşturur." -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "Otomatik olarak sürümleri oluştur" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -3860,15 +3878,15 @@ msgstr "" "Veritabanında kullanıcı tercihleri depolaması olmaması için boş bırakın, " "önerilen: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "Kullanıcı tercihleri depolama tablosu" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "Yapılandırma kimlik den. için kullanıcı" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -3876,11 +3894,11 @@ msgstr "" "Eğer pma_* tablolarınızın güncel olduğunu biliyorsanız etkisizleştirin. Bu " "uyumluluk kontrollerini önler ve dolayısıyla performansı arttırır" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Fazla bilgi kontrolü" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -3888,21 +3906,21 @@ msgstr "" "Bu sunucunun anlaması kolay açıklaması. Anamakine yerine görüntülemek için " "boş bırakın." -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Sunucunun fazladan adı" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Kullanıcının "tümünü (satırları) göster" düğmesini görüntüleyip " "görüntüleyemeyeceğidir" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Tüm satırları görüntülemeye izin ver" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -3912,15 +3930,15 @@ 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 sınırlandırmaz" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Parola değiştirme formunu göster" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Veritabanı oluşturma formu göster" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -3928,19 +3946,19 @@ msgstr "" "Düzenle/ekle kipinde alanlar doldurulsada doldurulmasada ilk olarak " "gösterilmesini tanımlar" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "Alan türlerini göster" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "İşlev alanlarını düzenle/ekle modunda görüntüler" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "İşlev alanlarını göster" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -3948,35 +3966,35 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]Phpinfo()[/a] çıktısına " "bağlantıyı gösterir" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "phpinfo() bağlantısını göster" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "Ayrıntılı MySQL sunucu bilgisini göster" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 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ülenmeyeceğini tanımlar" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "SQL sorgularını göster" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 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:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "İstatistikleri göster" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -3984,11 +4002,11 @@ msgstr "" "Eğer araç ipuçları etkinse ve veritabanı yorumu ayarlıysa bu, yorumu ve " "gerçek ismi çevirecek" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Veritabanının ismi yerine yorumunu görüntüle" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4000,40 +4018,40 @@ msgstr "" "içe koymak için kulanılır, bu yüzden sadece klasör, kod adı gibi çağrılır, " "tablo adının kendi değişmeden kalır" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Tablonun ismi yerine yorumunu görüntüle" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Araç ipuçlarında tablo yorumlarını görüntüle" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 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:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Kilitli tabloları atla" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Parola" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4041,11 +4059,11 @@ msgstr "" "[strong]Uyarı:[/strong] PHP SOAP uzantısı ya da PEAR SOAP kurulu olması " "gerekir" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "SQL Onaylayıcı etkin" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4053,12 +4071,12 @@ msgstr "" "Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı [kbd]" "isimsiz'dir[/kbd])" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Kullanıcı Adı" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4066,19 +4084,19 @@ msgstr "" ""Veritabanı Oluşturma" formunda veritabanı önerir (eğer mümkünse) " "veya metin alanını boş tutar" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Yeni veritabanı adı öner" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Eğer Suhosin algılanırsa, ana sayfada uyarı gösterilir" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "Suhosin uyarısı" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4086,11 +4104,11 @@ msgstr "" "Düzenle kipinde metin alanı boyutu (sütunlar), bu değer SQL sorgu metni " "alanları (*2) ve sorgu penceresi (*1.25) için önemi belirtecektir" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:474 msgid "Textarea columns" msgstr "Metin alanı sütunları" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4098,31 +4116,31 @@ msgstr "" "Düzenle kipinde metin alanı boyutu (satırlar), bu değer SQL sorgu metni " "alanları (*2) ve sorgu penceresi (*1.25) için önemi belirtecektir" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "Metin alanı satırları" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 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:480 +#: libraries/config/messages.inc.php:479 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:481 +#: libraries/config/messages.inc.php:480 msgid "Default title" msgstr "Varsayılan başlık" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 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:484 +#: libraries/config/messages.inc.php:483 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:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4134,27 +4152,27 @@ 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:487 +#: libraries/config/messages.inc.php:486 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:488 +#: libraries/config/messages.inc.php:487 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:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Gönderme dizini" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "Tüm veritabanı içinde aramaya izin verir" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Veritabanı aramayı kullan" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4162,11 +4180,11 @@ 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:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "Ayarlarda Geliştirici sekmesi etkin" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4175,15 +4193,15 @@ msgstr "" "Çoklu ifade sorgularında etkilenmiş her ifade sırasını gösterir. İfadenin ne " "kadar sorgu içerebileceği varsayılanı için libraries/import.lib.php'ye bakın." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Çoklu ifadeler için fazla bilgi" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Son sürümü kontrol et" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4191,7 +4209,7 @@ msgstr "" "İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] sıkıştırma etkin" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4212,72 +4230,72 @@ msgid "Signon authentication" msgstr "Oturum açma kimlik denetimi" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "VERİ YÜKLE kullanarak CSV" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Kitabı" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Kitabı" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Açık Kaynaklı Tablolama Belgesi" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Hızlı" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Özel" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Veritabanı dışa aktarma seçenekleri" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Veri" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel için CSV" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Açık Belge Metni" @@ -4317,7 +4335,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin." #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Olaylar" @@ -4325,7 +4343,7 @@ msgstr "Olaylar" #: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26 #: setup/frames/index.inc.php:113 msgid "Name" -msgstr "İsim" +msgstr "Adı" #: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 #: libraries/db_links.inc.php:44 @@ -4346,8 +4364,8 @@ msgid "Designer" msgstr "Tasarımcı" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Yetkiler" @@ -4359,7 +4377,7 @@ msgstr "Yordamlar" msgid "Return type" msgstr "Dönüş türü" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4392,18 +4410,18 @@ msgid "Details..." msgstr "Ayrıntılar..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Parola değiştir" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Parola yok" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Yeniden gir" @@ -4424,8 +4442,8 @@ msgstr "Yeni veritabanı oluştur" msgid "Create" msgstr "Oluştur" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Yetkiniz yok" @@ -4544,8 +4562,8 @@ msgid "Compression:" msgstr "Sıkıştırma:" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Hiçbiri" @@ -4701,7 +4719,7 @@ msgstr "Anahtara göre sırala" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4734,8 +4752,8 @@ msgstr "Binari içerikleri göster" msgid "Show BLOB contents" msgstr "BLOB içerikleri göster" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Gizle" @@ -4753,47 +4771,47 @@ msgstr "İşaretlenmiş sorguyu çalıştır" msgid "The row has been deleted" msgstr "Satır silindi" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Sonlandır" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "sorgu içerisinde" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Satırlar gösteriliyor" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "toplam" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Değiştir" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Baskı görünümü (tüm metinler ile)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Bağlantı bulunamadı" @@ -5263,12 +5281,12 @@ msgid "Data dump options" msgstr "Veri dökümü seçenekleri" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Tablo döküm verisi" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Tablo için tablo yapısı" @@ -5311,9 +5329,9 @@ msgstr "MIME türlerini göster" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Anamakine" @@ -5363,9 +5381,7 @@ msgstr "" #: libraries/export/sql.php:35 msgid "Additional custom header comment (\\n splits lines):" -msgstr "" -"İlave özel başlık yorumu (\n" -" satırları böler):" +msgstr "İlave özel başlık yorumu (\\ n satırları böler):" #: libraries/export/sql.php:37 msgid "" @@ -5477,40 +5493,40 @@ msgstr "" "sunucular arasında TIMESTAMP sütunlarını dökümlemek ve yeniden yüklemek için " "etkinleştirir)" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Yordamlar" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "İşlevler" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Dökümü yapılmış tablolar için kısıtlamalar" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Tablo kısıtlamaları" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "TABLO MIME TÜRLERİ" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "TABLO BAĞLANTILARI" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Tetikleyiciler" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Görünüm yapısı" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Görünüm yapısı durumu" @@ -5543,44 +5559,44 @@ msgstr "SQL sonucu" msgid "Generated by" msgstr "Üreten:" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (örn. sıfır satır)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "İsmine tıklayarak yapının içeriklerini görüntüleyin" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını " "değiştirin" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Aşağıdaki \"Yapı\" bağlantısıyla bunun yapısını düzenleyin" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Veritabanına git" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "ayarlar" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Tabloya git" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Görünüme git" @@ -5636,7 +5652,7 @@ msgstr "CSV girişinde %d. satırda geçersiz sütun sayısı." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Tablo adı" @@ -5713,7 +5729,7 @@ msgid "Charset" msgstr "Karakter Grubu" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binari" @@ -6004,8 +6020,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Kullanıcı Adı" @@ -6024,7 +6040,7 @@ msgid "Variable" msgstr "Değişken" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Değer" @@ -6045,34 +6061,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Slave kopya etme kullanıcısı ekle" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Herhangi kullanıcı" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Metin alanını kullan" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Herhangi anamakine" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Yerel" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Bu Anamakine" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Anamakine Tablosu kullan" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6121,7 +6137,7 @@ msgstr "ŞEMA HATASI: " #: libraries/schema/Pdf_Relation_Schema.class.php:891 #: libraries/schema/Pdf_Relation_Schema.class.php:1119 msgid "Relational schema" -msgstr "İlişkisel şema" +msgstr "Bağlantılı şema" #: libraries/schema/Pdf_Relation_Schema.class.php:1094 msgid "Table of contents" @@ -6154,7 +6170,7 @@ msgstr "Otomatik yerleşim tabanı" #: libraries/schema/User_Schema.class.php:106 msgid "Internal relations" -msgstr "Dahili ilişkiler" +msgstr "Dahili bağlantılar" #: libraries/schema/User_Schema.class.php:116 msgid "FOREIGN KEY" @@ -6174,11 +6190,11 @@ msgstr "Tabloları seç" #: libraries/schema/User_Schema.class.php:346 msgid "Display relational schema" -msgstr "İlişkisel şema göster" +msgstr "Bağlantılı şemayı göster" #: libraries/schema/User_Schema.class.php:356 msgid "Select Export Relational Type" -msgstr "Dışa Aktarma İlişkisel Türü Seç" +msgstr "Dışa Aktarma Bağlantılı Türü Seç" #: libraries/schema/User_Schema.class.php:377 msgid "Show grid" @@ -6310,11 +6326,11 @@ msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır" msgid "Columns" msgstr "Sütun" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver" @@ -6346,7 +6362,7 @@ msgstr "Sadece göster" msgid "Location of the text file" msgstr "Metin dosyasının yeri" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "web sunucusu gönderme dizini" @@ -6506,21 +6522,21 @@ msgstr "" "Bu dönüşüm için mevcut açıklama yok.
Lütfen yazara %s ne yapar diye " "sorun." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Depolama Motoru" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "PARTITION tanımı" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "%s sütun ekle" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "En az bir sütun eklemek zorundasınız." @@ -6726,8 +6742,8 @@ msgstr "Daha fazla ayarlar" msgid "Protocol version" msgstr "Protokol sürümü" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Kullanıcı" @@ -6764,7 +6780,7 @@ msgstr "Resmî phpMyAdmin Anasayfası" msgid "Mailing lists" msgstr "Postalama listesi" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6776,7 +6792,7 @@ msgstr "" "açık ayarlarla çalışıyor ve bu güvenlik açığını gerçekten düzeltmeniz " "gerekmektedir." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6786,7 +6802,7 @@ msgstr "" "Bu seçenek phpMyAdmin ile uyumlusuzdur ve bazı veri bozulmalarına sebep " "olabilir!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6796,7 +6812,7 @@ msgstr "" "görünüyor. Mbstring uzantısı olmadan phpMyAdmin karakter dizgilerini doğru " "olarak bölemez ve bu beklenmedik sonuçlar doğurabilir." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6808,13 +6824,13 @@ msgstr "" "session.gc-maxlifetime@]session.gc_maxlifetime[/a] düşük, bundan dolayı " "oturum açmanızın süresi phpMyAdmin içinde yapılandırılmadıkça dolacaktır." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Yapılandırma dosyası için gizli bir parola ifadesi gerekiyor " "(blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6824,7 +6840,7 @@ msgstr "" "phpMyAdmin dizininiz içinde mevcut. Birkez phpMyAdmin yapılandırıldı mı bunu " "kaldırmalısınız." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6833,7 +6849,7 @@ msgstr "" "Bağlı tablolar ile çalışan ilave özellikler etkisizleştirildi. Nedenini " "öğrenmek için %sburaya%s tıklayın." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6843,7 +6859,7 @@ msgstr "" "phpMyAdmin işevselliği eksik olacaktır. Örneğin rehber çerçeveyi otomatik " "olarak yenilemeyecek." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6852,7 +6868,7 @@ msgstr "" "PHP MySQL kütüphanenizin %s sürümü MySQL sunucunuzun %s sürümünden farklı. " "Bu tarafsız davranışa sebep olabilir." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6900,7 +6916,7 @@ msgstr "Tablo oluştur" #: pmd_general.php:73 pmd_general.php:305 msgid "Create relation" -msgstr "İlişki oluştur" +msgstr "Bağlantı oluştur" #: pmd_general.php:79 msgid "Reload" @@ -6944,7 +6960,7 @@ msgstr "Tümünü Gizle/Göster" #: pmd_general.php:123 msgid "Hide/Show Tables with no relation" -msgstr "İlişkisi olmayan Tabloları Gizle/Göster" +msgstr "Bağlantılı olmayan Tabloları Gizle/Göster" #: pmd_general.php:163 msgid "Number of tables" @@ -6952,11 +6968,11 @@ msgstr "Tablo sayısı" #: pmd_general.php:371 msgid "Delete relation" -msgstr "İlişkiyi sil" +msgstr "Bağlantıyı sil" #: pmd_help.php:26 msgid "To select relation, click :" -msgstr "İlişkiyi seçmek için buraya tıklayın :" +msgstr "Bağlantıyı seçmek için buraya tıklayın :" #: pmd_help.php:28 msgid "" @@ -7181,116 +7197,116 @@ msgstr "Depolama Motorları" msgid "View dump (schema) of databases" msgstr "Veritabanlarının dökümünü (şemasını) göster" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT hariç tüm yetkileri içerir." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Varolan tabloların yapısının değiştirilmesine izin verir." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Depolanan yordamların değiştirilmesine ve kaldırılmasına izin verir." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Depolanan yordamların oluşturulmasına izin verir." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Yeni tabloların oluşturulmasına izin verir." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Geçici tablolara oluşturulmasına izin verir." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden " "adlandırılmasına izin verir." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Yeni görünümlerin oluşturulmasına izin verir." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Veri silinmesine izin verir." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Veritabanları ve tabloların kaldırılmasına izin verir." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Tabloların kaldırılmasına izin verir." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Depolanan yordamların yürütülmesine izin verir." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Verinin içe ve dışa aktarılmasına izin verir." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Yetki tablolarını yeniden yüklemeden yeni kullanıcıların ve yetkilerin " "eklenmesine izin verir." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Kullanıcının saat başına açabileceği yeni bağlantı sayısını sınırlar." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7298,61 +7314,61 @@ msgstr "" "Kullanıcının saat başına çalıştırabileceği herhangi bir tabloyu veya " "veritabanını değiştiren komut sayısını sınırlar." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Bu MySQL sürümünde etkisi yoktur." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin " "temizlenmesine izin verir." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Kullanıcılara slave / master'ların nerede olduğunu sormasına izin verir." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Kopya edilen slave'ler için gereklidir." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Veri okunmasına izin verir." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Bütün veritabanı listesine erişim verir." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Sunucunun kapatılmasına izin ver." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7362,153 +7378,153 @@ msgstr "" "değişkenleri ayarlamak veya diğer kullanıcıların işlemlerini sonlandırmak " "gibi pek çok yönetimsel işlemler için gereklidir." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Veri değiştirilmesine izin ver." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Yetkiniz yok." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "Hiçbiri" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Not: MySQL yetki adları İngilizce olarak belirtilir " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Genel yetkiler" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Yönetim" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Kaynak sınırları" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Oturum Açma Bilgisi" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Parolayı değiştirme" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "Kullanıcı bulunamadı." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "%s kullanıcısı zaten var!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "%s için yetkileri güncellediniz." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s için yetkileri geri aldınız" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "%s için parola başarılı olarak değiştirildi." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "%s siliniyor" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Silmek için kullanıcı seçilmedi!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Yetkiler yeniden yükleniyor" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Seçili kullanıcılar başarılı olarak silindi." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Yetkileri düzenle" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Geri al" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Herhangi" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Kullanıcı gözden geçirme" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Onayla" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Yeni Kullanıcı ekle" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Seçili kullanıcıları kaldır" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Kullanıcılardan tüm aktif yetkileri geri al ve sonra da sil." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7521,48 +7537,48 @@ msgstr "" "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Sütuna özgü yetkiler" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Aşağıdaki veritabanına yetkileri ekle" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "_ ve % jokerleri harfi harfine kullanılmak için \\ ile doldurun" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Aşağıdaki tabloya yetkileri ekle" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... eski olanı sakla." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... eski olanı kullanıcı tablolarından sil." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... eski olandan bütün aktif yetkileri iptal et ve sonra da sil." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7570,42 +7586,42 @@ msgstr "" " ... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden " "yükle." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Kullanıcı için veritabanı" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "Hiçbiri" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr ""%s" veritabanına erişimi olan kullanıcılar" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "genel" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Veritabanına özgü" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "joker" @@ -8628,7 +8644,7 @@ msgstr "Kaynağa bağlanamadı" msgid "Could not connect to the target" msgstr "Hedefe bağlanamadı" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8915,27 +8931,18 @@ msgid "No newer stable version is available" msgstr "Daha yeni kararlı sürüm mevcut değil" #: setup/lib/index.lib.php:250 -#, fuzzy, php-format -#| msgid "" -#| "This [a@?page=form&formset=features#tab_Security]option[/a] should be " -#| "disabled as it allows attackers to bruteforce login to any MySQL server. " -#| "If you feel this is necessary, use [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#, php-format msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " "proxies list%s. However, IP-based protection may not be reliable if your IP " "belongs to an ISP where thousands of users, including you, are connected to." msgstr "" -"Bu [a@?page=form&formset=features#tab_Security]seçenek[/a] " -"etkisizleştirilmedikçe saldırganların herhangi bir MySQL sunucusuna " -"bruteforce yöntemiyle oturum açmasına izin verecektir. Eğer bunun gerekli " -"olduğunu düşünüyorsanız, [a@?page=form&formset=features#tab_Security]" -"güvenilir proksi listesi[/a] kullanın. Ancak, IP-tabanlı koruma eğer IP'niz, " -"sizinde dahil olduğunuz binlerce kullanıcıya sahip ve bağlı olduğunuz bir " -"ISS'e aitse güvenilir olmayabilir." +"Bu %sseçenek%s etkisizleştirilmedikçe saldırganların herhangi bir MySQL " +"sunucusuna bruteforce yöntemiyle oturum açmasına izin verecektir. Eğer bunun " +"gerekli olduğunu düşünüyorsanız, %sgüvenilir proksiler listesi%s kullanın. " +"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " +"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." #: setup/lib/index.lib.php:252 msgid "" @@ -8949,17 +8956,13 @@ msgstr "" "bunu hatırlamanıza gerek yoktur." #: setup/lib/index.lib.php:253 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Bzip2 compression " -#| "and decompression[/a] requires functions (%s) which are unavailable on " -#| "this system." +#, php-format msgid "" "%sBzip2 compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Bzip2 sıkıştırması ve " -"açması[/a] bu sistemde mevcut olmayan işlevleri (%s) gerektirir." +"%sBzip2 sıkıştırması ve açması%s bu sistemde mevcut olmayan işlevleri (%s) " +"gerektiriyor." #: setup/lib/index.lib.php:255 msgid "" @@ -8971,23 +8974,18 @@ msgstr "" "kontrol edilmelidir." #: setup/lib/index.lib.php:256 -#, fuzzy, php-format -#| msgid "You should use SSL connections if your web server supports it" +#, php-format msgid "This %soption%s should be enabled if your web server supports it." -msgstr "Eğer web sunucunuz destekliyorsa SSL bağlantı kullanmalısınız" +msgstr "Eğer web sunucunuz destekliyorsa bu %sseçeneği%s etkinleştirmelisiniz." #: setup/lib/index.lib.php:258 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]GZip compression and " -#| "decompression[/a] requires functions (%s) which are unavailable on this " -#| "system." +#, php-format msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]GZip sıkıştırması ve " -"açması[/a] bu sistemde mevcut olmayan işlevleri (%s) gerektirir." +"%sGZip sıkıştırması ve açması%s bu sistemde mevcut olmayan işlevleri (%s) " +"gerektiriyor." #: setup/lib/index.lib.php:260 #, php-format @@ -8996,20 +8994,19 @@ msgid "" "invalidation if %ssession.gc_maxlifetime%s is lower than its value " "(currently %d)." msgstr "" +"%sOturum açma tanımlama bilgisi geçerliliğinin%s 1440 saniyeden büyük " +"olması, eğer onun değerinden %ssession.gc_maxlifetime%s düşükse (şu anki %d) " +"gelişi güzel oturum geçersizliklerine sebep olabilir." #: setup/lib/index.lib.php:262 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] " -#| "should be set to 1800 seconds (30 minutes) at most. Values larger than " -#| "1800 may pose a security risk such as impersonation." +#, php-format msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" -"[a@?page=form&formset=features#tab_Security]Oturum açma tanımlama bilgisi " -"geçerliliği[/a] en fazla 1800 saniyeye (30 dakika) ayarlanmalıdır. 1800'den " -"büyük değerler taklit edilme gibi güvenlik riski yaratabilir." +"%sOturum açma tanımlama bilgisi geçerliliği%s en fazla 1800 saniyeye (30 " +"dakika) ayarlanmalıdır. 1800'den büyük değerler taklit edilme gibi güvenlik " +"riski yaratabilir." #: setup/lib/index.lib.php:264 #, php-format @@ -9017,38 +9014,24 @@ msgid "" "%sLogin cookie validity%s must be set to a value less or equal to %sLogin " "cookie store%s." msgstr "" +"%sOturum açma tanımlama bilgisi geçerliliği%s, %sOturum açma tanımlama " +"bilgisi depolama%s değerine eşit ya da daha az değere ayarlanmak zorundadır." #: setup/lib/index.lib.php:266 -#, fuzzy, php-format -#| msgid "" -#| "If you feel this is necessary, use additional protection settings - [a@?" -#| "page=servers&mode=edit&id=%1$d#tab_Server_config]host " -#| "authentication[/a] settings and [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#, 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." msgstr "" -"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- " -"[a@?page=servers&mode=edit&id=%1$d#tab_Server_config]anamakine " -"kimlik denetimi[/a] ayarları ve [a@?page=form&" -"formset=features#tab_Security]güvenilir proksi listesi[/a]. Ancak, IP-" -"tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce kullanıcıya " -"sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." +"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %" +"sanamakine kimlik denetimi%s ayarları ve %sgüvenilir proksiler listesi%s. " +"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " +"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." #: setup/lib/index.lib.php:268 -#, fuzzy, php-format -#| msgid "" -#| "You set the [kbd]config[/kbd] authentication type and included username " -#| "and password for auto-login, which is not a desirable option for live " -#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#, php-format msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -9059,61 +9042,44 @@ msgstr "" "[kbd]Yapılandırma[/kbd] kimlik denetimi 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. [a@?" -"page=servers&mode=edit&id=%1$d#tab_Server]Kimlik denetimi türünü[/a] " -"[kbd]tanımlama bilgisine[/kbd] ya da [kbd]http[/kbd] olarak ayarlayın." +"herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %sKimlik denetimi " +"türünü%s [kbd]tanımlama bilgisine[/kbd] ya da [kbd]http[/kbd] olarak " +"ayarlayın." #: setup/lib/index.lib.php:270 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] " -#| "requires functions (%s) which are unavailable on this system." +#, php-format msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Zip sıkıştırması[/a] bu " -"sistemde mevcut olmayan işlevleri (%s) gerektirir." +"%sZip sıkıştırması%s bu sistemde mevcut olmayan işlevleri (%s) gerektirir." #: setup/lib/index.lib.php:272 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip decompression[/" -#| "a] requires functions (%s) which are unavailable on this system." +#, php-format msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" -"[a@?page=form&formset=features#tab_Import_export]Zip açması[/a] bu " -"sistemde mevcut olmayan işlevleri (%s) gerektirir." +msgstr "%sZip açması%s bu sistemde mevcut olmayan işlevleri (%s) gerektirir." #: setup/lib/index.lib.php:296 -#, fuzzy -#| msgid "You should use SSL connections if your web server supports it" msgid "You should use SSL connections if your web server supports it." -msgstr "Eğer web sunucunuz destekliyorsa SSL bağlantı kullanmalısınız" +msgstr "Eğer web sunucunuz destekliyorsa, SSL bağlantı kullanmalısınız." #: setup/lib/index.lib.php:306 -#, fuzzy -#| msgid "You should use mysqli for performance reasons" msgid "You should use mysqli for performance reasons." -msgstr "Verim almak için mysqli kullanmalısınız" +msgstr "Verim almak için mysqli kullanmalısınız." #: setup/lib/index.lib.php:331 msgid "You allow for connecting to the server without a password." msgstr "Sunucuya parolasız bağlanmaya izin verdiniz." #: setup/lib/index.lib.php:351 -#, fuzzy -#| msgid "Key is too short, it should have at least 8 characters" msgid "Key is too short, it should have at least 8 characters." msgstr "Anahtar çok kısa, en az 8 karakter olmalıdır" #: setup/lib/index.lib.php:358 -#, fuzzy -#| msgid "Key should contain letters, numbers [em]and[/em] special characters" msgid "Key should contain letters, numbers [em]and[/em] special characters." -msgstr "Anahtar harf, numara [em]ve[/em] özel karakterler içermelidir" +msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir." #: sql.php:569 tbl_replace.php:380 #, php-format @@ -9132,12 +9098,12 @@ msgstr "SQL sorgusu gösteriliyor" msgid "Validated SQL" msgstr "Oanylı SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Etiket" @@ -9146,71 +9112,71 @@ msgstr "Etiket" msgid "Table %1$s has been altered successfully" msgstr "Tablo %1$s başarılı olarak değiştirldi" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Dış değerlere gözat" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "İşlev" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr " Uzunluğu nedeniyle,
bu sütun düzenlenebilir olmayabilir " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "BLOB Havuzu Referansını kaldır" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binari - düzenlemeyiniz" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "BLOB Havuzuna gönder" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "ve sonra" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için " "CTRL+OK TUŞLARI'nı kullanın" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "%s satırla eklemeye devam et" @@ -9313,12 +9279,12 @@ msgstr "" msgid "Redraw" msgstr "Yeniden Çiz" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "%s tablosu zaten var!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "Tablo %1$s oluşturuldu." @@ -9535,7 +9501,7 @@ msgstr "" #: tbl_relation.php:402 msgid "Internal relation" -msgstr "Dahili bağlantılı" +msgstr "Dahili bağlantı" #: tbl_relation.php:404 msgid "" @@ -9604,7 +9570,7 @@ msgstr "%s üzerinde bir indeks eklendi" #: tbl_structure.php:596 tbl_structure.php:598 msgid "Relation view" -msgstr "İlişki görünümü" +msgstr "Bağlantı görünümü" #: tbl_structure.php:605 tbl_structure.php:607 msgid "Propose table structure" @@ -9801,11 +9767,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Açıklama" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Burada bulunmak için yeterli izinlere sahip değilsiniz!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil güncellendi." @@ -9817,6 +9783,12 @@ msgstr "GÖRÜNÜM adı" msgid "Rename view to" msgstr "Görünümü yeniden şuna adlandır" +#~ msgid "Field navigation using Ctrl+Arrows" +#~ msgstr "Ctrl+Okları kullanarak alan rehberliği" + +#~ msgid "Toggle Query Box Visibility" +#~ msgstr "Sorgu Kutusu Görünürlüğünü Değiştir" + #~ msgid "SVG" #~ msgstr "SVG" diff --git a/po/tt.po b/po/tt.po index c12424bf99..5a58db3b87 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Barısın kürsät" @@ -38,17 +38,20 @@ msgstr "" "bälki, yä browserneñ iminlek caylawında täräzä-ara yañartu tıyılğan bulıp " "tora." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Ezläw" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Ezläw" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -122,7 +125,7 @@ msgid "Database comment: " msgstr "Biremlek açıqlaması:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Tüşämä açıqlaması" @@ -133,7 +136,7 @@ msgstr "Tüşämä açıqlaması" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -148,8 +151,8 @@ msgstr "Alan iseme" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "Töre" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Buş" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "Bonı belän bäyläneş:" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "Açıqlama" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Yuq" @@ -222,10 +225,10 @@ msgstr "Yuq" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "Saylap Beter" msgid "Unselect All" msgstr "Saylanunı Töşer" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Biremlek iseme buş!" @@ -266,80 +269,80 @@ msgstr "\"%s\" biremlege \"%s\" itep ataldı" msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Ämer" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "%s biremlege beterelde." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "Biremleklär yuq" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Biremlekne boña kübäyt" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Tözeleşen genä" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Eçtälegen genä" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Kübäytü aldınnan CREATE DATABASE östise" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "%s östäw" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Çikläwlär östise" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Kübäytelgän biremlekkä küçäse" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Tezü cayı" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -351,24 +354,24 @@ msgstr "" "Bäyläneştä torğan tüşämä belän eşläp bulmas, östämä eşli-alu sünek tora. Anı " "qabızu öçen, %sbonda çirtäse%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Bäyläneşlär sxeme" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Tüşämä" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -379,33 +382,33 @@ msgstr "Kerem" msgid "Size" msgstr "Küläme" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "totıla" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Yasalışı" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Soñğı yañartılu" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Soñğı tikşerü" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -413,7 +416,7 @@ msgid_plural "%s tables" msgstr[0] "%s tüşämä" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -443,7 +446,7 @@ msgid "Descending" msgstr "Kimep" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Kürsät" @@ -464,8 +467,8 @@ msgid "Del" msgstr "Sal" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Yä" @@ -537,17 +540,19 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s kileşü bar, %s atlı tüşämädä" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Küzätü" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -591,157 +596,142 @@ msgstr "Kiläse tüşämä eçendä:" msgid "Inside column:" msgstr "Kiläse tüşämä eçendä:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Östäw" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Tözeleş" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Beter" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Buşat" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" atlı tüşämä buşatıldı" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Qaraş" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 #, fuzzy msgid "Replication" msgstr "Bäyläneşlär" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Sum" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Saylanğannı:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Saylap Beter" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Saylanunı Töşer" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Check overheaded" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Export" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Buşat" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Beter" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Tüşämä tikşerü" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Optimize table" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Tüşämä tözätü" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Tüşämä centekläw" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Eçtälek Süzlege" @@ -750,13 +740,13 @@ msgstr "Eçtälek Süzlege" msgid "Tracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -784,8 +774,8 @@ msgstr "Torış" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Eş" @@ -833,12 +823,12 @@ msgstr "Tüşämä tikşerü" msgid "Database Log" msgstr "Biremlek" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -909,7 +899,7 @@ msgstr "Tamğa beterelde." msgid "Showing bookmark" msgstr "Bitbilge kürsätü" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" @@ -932,7 +922,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Kire" @@ -1011,11 +1001,11 @@ msgstr "Host adı buş!" msgid "The user name is empty!" msgstr "Atama buş!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Sersüzeñ buş!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" @@ -1119,115 +1109,121 @@ msgid "Searching" msgstr "Ezläw" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL-soraw" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL-soraw" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Engine" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Qarama" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Üzgärtülär saqlandı" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "Bäyläneşkä küzätü" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "Eçke bäyläneş" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Sünek" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kürsätäse Alan saylaw" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Sersüz Ürçetü" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Ürçet" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Sersüz üzgärtü" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dşm" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy msgid "Done" msgstr "Eçtälek" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Uzğan" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1235,96 +1231,96 @@ msgid "Next" msgstr "Kiläse" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Tulayım" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Äpr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "May" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Yün" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Yül" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Ökt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1332,176 +1328,176 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dek" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ykş" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dşm" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sşm" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cmğ" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Şmb" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ykş" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dşm" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sşm" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çrş" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pnc" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cmğ" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şmb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "totıla" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1577,9 +1573,9 @@ msgid "Comment" msgstr "Açıqlama" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Tözätü" @@ -1600,15 +1596,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Biremleklär" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Xata" @@ -1852,6 +1848,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Östäw" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Tözeleş" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1920,7 +1942,7 @@ msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -1974,7 +1996,7 @@ msgstr "MySQL qaytarışı:" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL Centekläw" @@ -1986,11 +2008,11 @@ msgstr "SQL Centeklämäskä" msgid "Without PHP Code" msgstr "PHP Kodısız" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP-Kod yasa" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Yañart" @@ -1999,7 +2021,7 @@ msgstr "Yañart" msgid "Skip Validate SQL" msgstr "SQL Tikşermäskä" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL'nı Tikşer" @@ -2099,7 +2121,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2123,14 +2145,14 @@ msgid "Select from the web server upload directory %s:" msgstr "web-server'neñ yökläw törgäge" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "Tözeleş" @@ -2260,7 +2282,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2270,15 +2292,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Saqla" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Awdar" @@ -2400,140 +2422,136 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Biremlekne bolay atap quy" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Biremlekne bolay atap quy" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Biremlekne bolay atap quy" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Kiläse yazma üzgärtü" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Mömkinleklär Kürsätü" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Biremgä saqlıysı" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "Şul biremneñ bilgelämäse:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Tözeleş" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Qısu" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2543,71 +2561,71 @@ msgstr "Qısu" msgid "Put columns names in the first row" msgstr "Berençe yulda alannarnıñ iseme çığarası" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Alan yaptıruçı bilge" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Alan uzdıru bilgese" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "NULL'nı almaştırası:" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Yul ara bilgese" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Yul ara bilgese" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel söreme" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2615,410 +2633,410 @@ msgstr "Birem adınıñ tözeleşe" msgid "Dump table" msgstr "%s tüşämä" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Tüşämä başlığın östise" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Tüşämä başlığı" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Tüşämä dawamınıñ başlığı" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Açqıç yazması" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-törläre" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Bäyläneşlär" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Çığaru ısulı" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Birem bar bulsa, östän yazdırası" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL, kileşterü ısulı" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Yaratılu/Üzgärelü/Tikşerü çaqları" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Kötterep östise" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Yat tezeş tikşerüen sünderep" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "\"IGNORE\" belän kertäse" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Kilgän soraw külämeneñ öske küläme" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "Çığaru ısulı" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Transaksi eçendä ütkärep" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "Çığaru ısulı" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 #, fuzzy msgid "Export defaults" msgstr "Biremdän alu" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 #, fuzzy msgid "Customize default export options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Ürçet" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Yökläw" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "Biremdän alu" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Serverlär" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 #, fuzzy msgid "Servers display options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Tüşämä" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 #, fuzzy msgid "Tables display options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Qullanma" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Bitneñ sanı:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 #, fuzzy msgid "Customize query window options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Qullanma" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "Bäyläneşlär" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 #, fuzzy msgid "Customize import defaults" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-taríxı" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3026,285 +3044,285 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "Torış" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "Tüşämä" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Bu mätennän" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Qabatlanğan yazmalarnı ütäse" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 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:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Yöklänğan birem tözeleşe" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "LOCAL digän süz qullanıp" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, 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:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, 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:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 #, fuzzy msgid "Number of inserted rows" msgstr "Tezelgän yazma sanı bu." -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Buy Açıqlamasın Kürsätäse" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 #, fuzzy msgid "Database tree separator" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "MySQL belän totaştırğıç söreme" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3312,433 +3330,433 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 #, fuzzy msgid "Maximum databases" msgstr "Biremleklär yuq" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "Resurs çikläwläre" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Tüşämä eçtälegen bolay tezäse" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Tözätü cebe" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "Biremnär törgäge" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "Totaşular" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "Berär genä dä tüşämä yuq" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "Tüşämä kisäklären berläşterü" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 #, fuzzy msgid "PHP extension to use" msgstr "PHP Söreme" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "Biremleklär yuq" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "server adı" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3747,302 +3765,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "biremlek adı" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "Server ID'e" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "Tüşämä tözätü" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "Server Saylaw" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Buy Açıqlamasın Kürsätäse" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Cömlä" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Üzennän tözälü ısulı" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Açıq tüşämä tezmäse" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "Tulı Sorawlar Kürsät" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "Kerem Nöfüse" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4050,122 +4068,122 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "Açıq tüşämä tezmäse" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Sersüz" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "Atama:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Add/Delete Field Columns" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy msgid "Default title" msgstr "Biremlekne bolay atap quy" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4173,59 +4191,59 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 #, fuzzy msgid "Upload directory" msgstr "Biremnär törgäge" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4246,72 +4264,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "LOAD DATA qullanıp CSV" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Biremlek saqlaw köyläneşe" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Eçtälek" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV bireme, MS Excel öçen" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4350,7 +4368,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 #, fuzzy msgid "Events" msgstr "Cibärelde" @@ -4380,8 +4398,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Xoquqlar" @@ -4393,7 +4411,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4422,18 +4440,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Sersüz üzgärtü" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Sersüzsez" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Qabatla" @@ -4456,8 +4474,8 @@ msgstr "Yaña biremlek yaratu" msgid "Create" msgstr "Yarat" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Xoquqsız" @@ -4595,8 +4613,8 @@ msgid "Compression:" msgstr "Qısu" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Buş" @@ -4759,7 +4777,7 @@ msgstr "Qullanası tezeş" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4796,8 +4814,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4815,49 +4833,49 @@ msgstr "Tamğalanğan soraw cibärü" msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Üter" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "sorawda" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Yazma sanı:" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "tulayım" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Üzgärt" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Bastıru küreneşe (bar mätennär belän)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF schema kürsätü" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Bäyläneş tabılmadı" @@ -5295,12 +5313,12 @@ msgid "Data dump options" msgstr "Biremlek saqlaw köyläneşe" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Tüşämä eçtälegen çığaru" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Tüşämä tözeleşe" @@ -5353,9 +5371,9 @@ msgstr "Barlıq MIME-törlär" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Host" @@ -5501,43 +5519,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "Proseslar" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "Funksí" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "Tözeleşen genä" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 #, fuzzy msgid "Stand-in structure for view" msgstr "Tözeleşen genä" @@ -5574,44 +5592,44 @@ msgstr "SQL qaytarışı" msgid "Generated by" msgstr "Ürçätkeç:" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 #, fuzzy msgid "Go to table" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5662,7 +5680,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 #, fuzzy msgid "Table name" @@ -5742,7 +5760,7 @@ msgid "Charset" msgstr "Bilgelämä" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Binar" @@ -6026,8 +6044,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "İreşü iseme" @@ -6046,7 +6064,7 @@ msgid "Variable" msgstr "Üzgärmä" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Bäyä" @@ -6065,34 +6083,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Törle qullanuçı" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Bu mätennän" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Bar bulğan host" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Cirle" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Bu Sanaq" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Host Tüşämä eçennän" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6348,11 +6366,11 @@ msgstr "%s biremlegendä eşlätäse SQL-soraw" msgid "Columns" msgstr "Alan iseme" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" @@ -6384,7 +6402,7 @@ msgstr "Kürep kenä" msgid "Location of the text file" msgstr "SQL-ämerlege belän birem yökläw" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "web-server'neñ yökläw törgäge" @@ -6550,22 +6568,22 @@ msgstr "" "No Description is available for this transformation.
Please ask the " "author, what %s does." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Saqlaw Isulı" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s alan östäw" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6796,8 +6814,8 @@ msgstr "Bäyläneşlär buyınça töp mömkinleklär" msgid "Protocol version" msgstr "Protokol söreme" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Qullanuçı" @@ -6835,7 +6853,7 @@ msgstr "phpMyAdmin säxifäse" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6846,7 +6864,7 @@ msgstr "" "xisap saylanğan (sersüzsez \"root\"). MySQL-server şul töp xisap belän " "açılğan da, andıy xällär iminlekneñ citdi tişege tip sanala." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6855,7 +6873,7 @@ msgstr "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause breaking of some data!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6865,7 +6883,7 @@ msgstr "" "charset. Without mbstring extension phpMyAdmin is unable to split strings " "correctly and it may result in unexpected results." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6873,19 +6891,19 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6894,21 +6912,21 @@ msgstr "" "Bäyläneştä torğan tüşämä belän eşläp bulmas, östämä eşli-alu sünek tora. Anı " "qabızu öçen, %sbonda çirtäse%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7245,112 +7263,112 @@ msgstr "Saqlaw Isulı" msgid "View dump (schema) of databases" msgstr "Biremleklärneñ eçtälegen (tözeleşen) çığaru" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT'tan basqa bar xoquqlar da bar." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Yaña biremlek/tüşämä yasaw xoquqı." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Saqlanğan funksílar qorırğa birä." -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Yaña tüşämä yasaw xoquqı." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Waqıtlı tüşämä yasaw xoquqı." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Yaña qaraş qorırğa birä." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Eçtälek beterü xoquqı." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Biremlek/tüşämä beterü xoquqı." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Tüşämä beterü xoquqı." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Eçke funksílar eşlätterergä birä." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tüşämä." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Eçtälek östäw/almaştıru xoquqı." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7358,59 +7376,59 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Eçtälekne uqu xoquqı." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorawların eşläterlek itä." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Serverne tuqtatu xoquqı." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7420,158 +7438,158 @@ msgstr "" "Required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Eçtälek üzgärtü xoquqı." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Xoquqlar yuq." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Buş" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Beläse: MySQL'da xoquq adı İnglizçä kertelä!" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Töp xoquq" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "İdärä" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resurs çikläwläre" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Kereş Turında" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Sersüzen üzgärtäse tügel" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Qullanuçı yuq." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" atlı qullanuçı bar inde!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Yana qullanuçı östälände." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "\"%s\" Beterü" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Beteräse qullanuçılar saylanmağan!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Bu xoquqlarnı yöklä" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Xoquqlar Üzgärtü" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Töşer" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Törle" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Qullanuçılar tezmäse" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Xoquq" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Yaña qullanuçı östäw" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Saylanğan qullanuçı beterü" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Qullanuçı xoquqların awdarıp beteräse." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7584,95 +7602,95 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Kiläse biremlek öçen xoquqlar östäw" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "_ belän % bilgelären şul kileş kenä qullanu öçen \\ belän ütkärergä kiräk" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Kiläse tüşämä öçen xoquqlar östäw" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... keep the old one." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... delete the old one from the user tables." +#: server_privileges.php:2101 +msgid "" +" ... revoke all active privileges from the old one and delete it afterwards." +msgstr "" +" ... revoke all active privileges from the old one and delete it afterwards." + #: server_privileges.php:2102 msgid "" -" ... revoke all active privileges from the old one and delete it afterwards." -msgstr "" -" ... revoke all active privileges from the old one and delete it afterwards." - -#: server_privileges.php:2103 -msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... delete the old one from the user tables and reload the privileges " "afterwards." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Qullanuçı biremlege" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Buş" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "ğömümi" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "almaşbilge" @@ -8577,7 +8595,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8990,12 +9008,12 @@ msgstr "Tulı Sorawlar Kürsät" msgid "Validated SQL" msgstr "SQL'nı Tikşer" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Yarlıq" @@ -9004,73 +9022,73 @@ msgstr "Yarlıq" msgid "Table %1$s has been altered successfully" msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Browse foreign values" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funksí" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Because of its length,
this field might not be editable" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Binar - üzgärtmäslek" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr ", şunnan soñ" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü " "öçen, CTRL+uq töymäläre bar" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9178,12 +9196,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "%s atlı tüşämä bar inde!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" @@ -9680,11 +9698,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Açıqlama" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Bonda bulu öçen, xoquqlarıñ citmi!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "The profile has been updated." diff --git a/po/ug.po b/po/ug.po index c12d84889a..416f9a5358 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" @@ -18,7 +18,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" @@ -40,17 +40,20 @@ msgstr "" "كۆزنەكنى يىڭىلاشقا ئامالسىز،سىز بەلكەم باش كۆزنەكنى تاقىۋەتكەن بۇلىشىڭىز " "ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ئىزدەش" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -65,14 +68,14 @@ msgstr "ئىزدەش" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "ساندان ئىزاھاتى:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "جەدۋەل ئىزاھى" @@ -135,7 +138,7 @@ msgstr "جەدۋەل ئىزاھى" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -148,8 +151,8 @@ msgstr "سۆزلەم" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -161,13 +164,13 @@ msgstr "تۈرى" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "بوش" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -186,8 +189,8 @@ msgid "Links to" msgstr "ئۇلانما" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -203,10 +206,10 @@ msgstr "ئىزاھلار" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "يوق" @@ -222,10 +225,10 @@ msgstr "يوق" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -252,7 +255,7 @@ msgstr "ھەممىنى تاللاش" msgid "Unselect All" msgstr "تاللاشنى قالدۇرۇش" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "ساندان ئىسمىنى بوش قويماڭ!" @@ -266,77 +269,77 @@ msgstr "ساندان ئىسمى %s غا ئۆزگەرتىلدى %s" msgid "Database %s has been copied to %s" msgstr "ساندان %s غا كۆچۈرۈلدى %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "بۇيرۇق" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "ساندان %s ئۆچۈرۈلدى." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "كۆچۈرۈلگەن ساندان" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "كۆچۈرۈلگەن ساندان" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "تۈزىلىشىنىلا" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "ئۇچۇرنىلا" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇش" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "قوشۇلغىنى %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "مەجبۇرى قوشۇش" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "تاسقاش" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -345,24 +348,24 @@ msgstr "" "ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" "sبۇ يەرنى كۆرۈڭ%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" msgstr "PDF تىزىىسىنى كۆرسىتىش" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "جەدۋەل" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -373,40 +376,40 @@ msgstr "سەپ سانى" msgid "Size" msgstr "ھەجىم" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "ئىشلىتىلمەكتە" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "قۇرۇش" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "ئاخىرقى يېڭلىنىش" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "ئاخىرقى تەكشۈرۈش" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s جەدۋەل" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -436,7 +439,7 @@ msgid "Descending" msgstr "كېمىيىش" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "كۆرسىتىش" @@ -457,8 +460,8 @@ msgid "Del" msgstr "ئۆچۈرۈش" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "ياكى" @@ -525,17 +528,19 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "كۆزەت" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -576,156 +581,141 @@ msgstr "تۆۋەندىكى جەدۋەل(لەر): " msgid "Inside column:" msgstr "ئىچىدىكى سۆزلەم:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "قىستۇرۇش" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "تۈزۈلىشى" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "ئۆچۈرۈش" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "تازىلاش" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr " %s جەدۋەل تازىلاندى" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "%s جەدىۋەل ئۆچۈرۈلدى" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "ئاكتىپ ئىزلاش" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "قاراش" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "كۆچۈرۈش" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "جەمئىي" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "تاللانغىنى:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "ھەممىنى تاللاش" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "تاللاشنى بىكار قىلىش" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "چىقىرىش" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "تازىلاش" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "ئۆچۈرۈش" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "جەدۋەل تەكشۈرۈش" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "جەدۋەلنى ئەلالاش" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "جەدۋەلنى ئوڭشاش" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "جەدۋەل تەھلىلى" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "مەلۇمات لۇغىتى" @@ -733,13 +723,13 @@ msgstr "مەلۇمات لۇغىتى" msgid "Tracked tables" msgstr "ئىزلانغان جەدۋەل" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -765,8 +755,8 @@ msgstr "ھالەت" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "ئامال" @@ -809,12 +799,12 @@ msgstr "جەدۋەل ئىزلاش" msgid "Database Log" msgstr "ساندان خاتىرىسى" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -892,7 +882,7 @@ msgstr "خەتكۈچ ئۆچۈرۈلدى" msgid "Showing bookmark" msgstr "خەتكۈچنى كۆرسىتىش" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "قۇرۇلغان خەتكۈچ %s" @@ -919,7 +909,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "قايتىش" @@ -997,11 +987,11 @@ msgstr "مۇلازىمىتېر ئىسمى بوشكەن!" msgid "The user name is empty!" msgstr "قوللانغۇچى ئىسمى بوشكەن!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "پارول بوشكەن!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!" @@ -1098,105 +1088,111 @@ msgid "Searching" msgstr "ئىزدەش" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" +msgid "Hide query box" msgstr "" #: js/messages.php:85 #, fuzzy +#| msgid "SQL query" +msgid "Show query box" +msgstr "SQL سورىقى" + +#: js/messages.php:86 +#, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr " ئىچكى بىرلىشىش" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr ".باغلانمىلار ئۆچۈرۈلدى" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "سىرتقى مۇناسىۋەتلىك ئۇلانما قۇشۇلدى" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "!خاتالىق:بۇناسىۋەت ئاللىقاچان مەۋجۈت" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "ساقلاشتا خاتالىق كۆرۈلدى." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "تاقالدى" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "سېرتقى ئۇلىنىشنى تاللاش" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "تاشقى ئاچقۇق قىممىتى" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "پارول ھاسىللاش" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "ھاسىللاش" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "پارولنى ئۆزگەرتىش" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "تېخىمۇ كۆپ" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "تامام" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "ئالدىنقى ئاي" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1204,231 +1200,231 @@ msgid "Next" msgstr "كىيىنكى ئاي" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "بۈگۈن" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "قەھرىتان" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "ھۇت" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "نورۇز" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "ئۈمىد" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "باھار" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "6-ئاي" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "7-ئاي" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "8-ئاي" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "9-ئاي" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "10-ئاي" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "11-ئاي" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "كۆنەك" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "يەكشەنبە" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "دۈشەنبە" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "چارشەنبە" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "پەيشەنبە" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "جۈمە" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "شەنبە" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "شەنبە" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "يەكشەنبە" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "دۈشەنبە" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "سەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "چارشەنبە" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "پەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "جۈمە" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "شەنبە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "ھەپتە" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "سائەت" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "مىنۇت" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "سېكنۇت" @@ -1504,9 +1500,9 @@ msgid "Comment" msgstr "ئىزاھات" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "تەھىرلەش" @@ -1529,15 +1525,15 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "ساندان" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "خاتالىق" @@ -1776,6 +1772,32 @@ msgstr "ھۆججەت چۈشۈرۈش" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "قىستۇرۇش" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "تۈزۈلىشى" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "" @@ -1836,7 +1858,7 @@ msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "مۇلازىمىتېر" @@ -1890,7 +1912,7 @@ msgstr "MySQL جاۋابى:" msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "SQL ئىزاھى" @@ -1902,11 +1924,11 @@ msgstr "SQL ئىزاھىىدىن ئاتلاش" msgid "Without PHP Code" msgstr "PHP كودى يوق" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "يېڭلاش" @@ -1915,7 +1937,7 @@ msgstr "يېڭلاش" msgid "Skip Validate SQL" msgstr "SQL دەلىللەشتىن ئاتلاش" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL دەلىللەش" @@ -2013,7 +2035,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2037,14 +2059,14 @@ msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2168,7 +2190,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2178,15 +2200,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "" @@ -2307,133 +2329,129 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Table comments" msgid "Display errors" msgstr "جەدۋەل ئىزاھى" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "ھۆججەتنى باشقا ساقلاش" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "فورماتلاش" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "پىرىسلاش" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2441,62 +2459,62 @@ msgstr "پىرىسلاش" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "مەزمۇن ئايرىش بەلگىسى" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "مەزمۇنئايلاندۇرۇش بەلگىسى" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "نى ئالماشتۇرۇش ئۈچۈنNULL " -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel نۇسخىسى" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2505,393 +2523,393 @@ msgstr "" msgid "Dump table" msgstr "%s جەدۋەل" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "ئۆزئىچىگە ئالغان جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "داۋاملاشتۇرىدىغان جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "ئاچقۇچلۇق ئېمزا" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIMEشەكلى" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "مۇناسىۋىتى" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "چىقىرىش" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "مەۋجۇت ھۆججەت ئۈستىدىن يېزىش" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQLئۆز ئىچىگە ئالغان شەكلى" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "چىقىرىش" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "ھاسىللاش" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "كىرگۈزۈش" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "OpenOffice ھۆججىتى" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authenticating..." msgid "Authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authenticating..." msgid "Authentication settings" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "Skip Validate SQL" msgid "SQL Validator" msgstr "SQL دەلىللەشتىن ئاتلاش" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2899,275 +2917,275 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Columns terminated by" msgid "Column names in first row" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Table comments" msgid "Display table filter" msgstr "جەدۋەل ئىزاھى" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3175,416 +3193,416 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "ئەسلىگە كەلتۈرۈش يۇلى" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3593,289 +3611,289 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ساندان ئىسمى" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3883,121 +3901,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "پارول" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ئەندىز" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4005,58 +4023,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4085,72 +4103,72 @@ msgid "Signon authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "OpenOffice جەدىۋېلى" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "سانلىق مەلۇمات" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel دىكى CSVشەكلى" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenOffice ھۆججىتى" @@ -4189,7 +4207,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىنى تەكشۈرۈپ چىقىڭ." #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "ھادىسە" @@ -4218,8 +4236,8 @@ msgid "Designer" msgstr "لايىھەلىگۈچ" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "ھۇقۇقى" @@ -4231,7 +4249,7 @@ msgstr "دائىملىق" msgid "Return type" msgstr "تۈرگە قايتىش" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4262,18 +4280,18 @@ msgid "Details..." msgstr "تەپسىلاتلار..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "پارولنى ئۆزگەرتىش" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "پارول يوق" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "قايتا كىرگۈزىش" @@ -4294,8 +4312,8 @@ msgstr "ساندان قۇرۇش" msgid "Create" msgstr "قۇرۇش" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "ھوقۇقسىز" @@ -4428,8 +4446,8 @@ msgid "Compression:" msgstr "پىرىسلاش" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "يوق" @@ -4591,7 +4609,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4624,8 +4642,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4643,49 +4661,49 @@ msgstr "" msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "ئۇمۇمىي" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "ئۆزگەرتتىش" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "بېسىپ چىقىرش كۈرۈلمىسى" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "جەدۋەل ئىزاھى" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "ئۇلىنىشنى تاپالمىدى" @@ -5104,12 +5122,12 @@ msgid "Data dump options" msgstr "" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "ئايلاندۇرۇپ ساقلاش جەدىۋېلىدىكى سانلىق مەلۇمات" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "جەدېۋەلنىڭ تۈزىلىشى" @@ -5160,9 +5178,9 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "ئاساسىي ماشىنا" @@ -5305,40 +5323,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5373,42 +5391,42 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5459,7 +5477,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5536,7 +5554,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "" @@ -5818,8 +5836,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "" @@ -5838,7 +5856,7 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "" @@ -5857,34 +5875,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6128,11 +6146,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6164,7 +6182,7 @@ msgstr "" msgid "Location of the text file" msgstr "يىزىق ھۆججەتنىڭ ئورنى" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" @@ -6296,21 +6314,21 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "" @@ -6480,8 +6498,8 @@ msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "" @@ -6518,7 +6536,7 @@ msgstr "" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6526,21 +6544,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6548,18 +6566,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6568,21 +6586,21 @@ msgstr "" "ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" "sبۇ يەرنى كۆرۈڭ%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6902,321 +6920,321 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "" -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7225,89 +7243,89 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8189,7 +8207,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8591,12 +8609,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "" @@ -8605,69 +8623,69 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "كېيىن" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8777,12 +8795,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -9256,11 +9274,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "" diff --git a/po/uk.po b/po/uk.po index 783ad0844f..e99c939e59 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-27 23:41+0200\n" "Last-Translator: Olexiy Zagorskyi \n" "Language-Team: ukrainian \n" @@ -16,7 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Показати все" @@ -39,17 +39,20 @@ msgstr "" "вікно, або налаштування безпеки Вашого оглядача блокують між-віконні " "оновлення." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Шукати" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -64,14 +67,14 @@ msgstr "Шукати" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -123,7 +126,7 @@ msgid "Database comment: " msgstr "Коментар бази даних: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Коментар до таблиці" @@ -134,7 +137,7 @@ msgstr "Коментар до таблиці" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -147,8 +150,8 @@ msgstr "Стовпчик" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -160,13 +163,13 @@ msgstr "Тип" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Нуль" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -185,8 +188,8 @@ msgid "Links to" msgstr "Лінки до" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -202,10 +205,10 @@ msgstr "Коментарі" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Ні" @@ -221,10 +224,10 @@ msgstr "Ні" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -251,7 +254,7 @@ msgstr "Відмітити все" msgid "Unselect All" msgstr "Зняти всі відмітки" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Ім'я бази даних порожнє!" @@ -265,77 +268,77 @@ msgstr "Базу даних %s перейменовано в %s" msgid "Database %s has been copied to %s" msgstr "Базу даних %s скопійовано в %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Перейменувати базу даних в" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Команда" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "Видалити базу даних" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "Базу даних %s знищено." -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "Знищити базу даних (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Копіювати базу даних в" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Лише структуру" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Структуру і дані" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Лише дані" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "Додати %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Перейти до скопійованої бази даних" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Порівняння" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -347,24 +350,24 @@ msgstr "" "Додаткова можливість роботи із залінкованими таблицями деактивована. Для " "того, щоб довідатись чому, натисніть %sтут%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Схема зв'язків" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "таблиця " #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -375,33 +378,33 @@ msgstr "Рядки" msgid "Size" msgstr "Розмір" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "використовується" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Створено" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Поновлено" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Перевірено" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -410,7 +413,7 @@ msgstr[1] "%s таблиці" msgstr[2] "%s таблиць" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -440,7 +443,7 @@ msgid "Descending" msgstr "Спадаючий" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Показати" @@ -461,8 +464,8 @@ msgid "Del" msgstr "Видалити" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "або" @@ -531,17 +534,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s співпадіння у таблиці %s" msgstr[1] "%s співпадіння у таблиці %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Переглянути" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -584,156 +589,141 @@ msgstr "Всередині таблиць:" msgid "Inside column:" msgstr "Всередині стовпчика:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Вставити" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Структура" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Знищити" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Очистити" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "Таблицю %s було очищено" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Таблицю %s було знищено" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Всього" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "З відміченими:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Відмітити все" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Зняти усі відмітки" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Експорт" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Очистити" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Знищити" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Перевірити таблицю" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Оптимізувати таблицю" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Ремонтувати таблицю" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Аналіз таблиці" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Словник даних" @@ -741,13 +731,13 @@ msgstr "Словник даних" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -773,8 +763,8 @@ msgstr "Статус" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Дія" @@ -817,12 +807,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -893,7 +883,7 @@ msgstr "Закладку було видалено." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "" @@ -916,7 +906,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Назад" @@ -994,11 +984,11 @@ msgstr "Порожнє ім'я хоста!" msgid "The user name is empty!" msgstr "Порожнє і'мя користувача!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Порожній пароль!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" @@ -1103,112 +1093,120 @@ msgid "Searching" msgstr "Шукати" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "in query" +msgid "Hide query box" +msgstr "по запиту" #: js/messages.php:85 +#, fuzzy +#| msgid "SQL query" +msgid "Show query box" +msgstr "SQL-запит" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ігноруровати" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Модифікації було збережено" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Загальні можливості" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "заблоковано" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Виберіть поля для відображення" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Змінити пароль" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Змінити пароль" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пн" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "Немає" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Назад" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1216,96 +1214,96 @@ msgid "Next" msgstr "Дальше" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Разом" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Двійковий " -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Бер" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Квт" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Трв" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чрв" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Лип" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Сер" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Жов" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1313,176 +1311,176 @@ msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Гру" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нд" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пн" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вт" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пт" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Нд" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нд" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "використовується" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1556,9 +1554,9 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Редагувати" @@ -1579,15 +1577,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Бази Даних" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Помилка" @@ -1827,6 +1825,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Вставити" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Структура" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Databases statistics" @@ -1895,7 +1919,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Сервер" @@ -1949,7 +1973,7 @@ msgstr "Відповідь MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Тлумачити SQL" @@ -1961,11 +1985,11 @@ msgstr "Не тлумачити SQL" msgid "Without PHP Code" msgstr "без PHP коду" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "Створити PHP код" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1974,7 +1998,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Не перевіряти SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "Перевірити SQL" @@ -2072,7 +2096,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2096,14 +2120,14 @@ msgid "Select from the web server upload directory %s:" msgstr "каталог веб-сервера для завантаження файлів (upload directory)" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2233,7 +2257,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2243,15 +2267,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Зберегти" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Перевстановити" @@ -2372,135 +2396,131 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Relational schema" msgid "Default display direction" msgstr "Схема зв'язків" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Показати можливості" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Відіслати" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Стискання" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2510,66 +2530,66 @@ msgstr "Стискання" msgid "Put columns names in the first row" msgstr "Дати назви полів у першому рядку" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Поля взято в" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Поля екрануються" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "Замінити NULL на" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Рядки розділено" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Рядки розділено" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2578,401 +2598,401 @@ msgstr "" msgid "Dump table" msgstr "%s таблиця" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Зв'язки" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "Експорт" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Заміняти існуючі файли" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Зворотні лапки в назвах таблиць і полів" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 #, fuzzy #| msgid "Extended inserts" msgid "Use delayed inserts" msgstr "Розширена вставка" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Розширена вставка" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Експорт" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV дані" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generated by" msgid "General" msgstr "Згенеровано" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Таблиць" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Документація" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Номер сторінки:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Вікно запиту" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Документація" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" msgstr "Змінні сервера та налаштування" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-history" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2980,277 +3000,277 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Використовувати текстове поле" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "Використовувати текстове поле" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Замінити дані таблиці даними з файлу" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Дати назви полів у першому рядку" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "Показувати коментарі стовпців" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3258,422 +3278,422 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Змінити порядок таблиці" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Вікно запиту" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Вікно запиту" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Вікно запиту" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3682,293 +3702,293 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "БД" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Показувати коментарі стовпців" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Параметр" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3976,121 +3996,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Пароль" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "Додати/Прибрати колонки" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "По замовчуванню" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4098,58 +4118,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4170,43 +4190,43 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Database export options" msgid "Database export options" @@ -4214,30 +4234,30 @@ msgstr "Налаштування експорту бази даних" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Дані" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV для даних MS Excel" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4276,7 +4296,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4305,8 +4325,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Привілеї" @@ -4318,7 +4338,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4347,18 +4367,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Змінити пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Без паролю" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Підтвердження" @@ -4379,8 +4399,8 @@ msgstr "Створити нову БД" msgid "Create" msgstr "Створити" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Без привілеїв" @@ -4517,8 +4537,8 @@ msgid "Compression:" msgstr "Стискання" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Немає" @@ -4678,7 +4698,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4713,8 +4733,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4732,49 +4752,49 @@ msgstr "Виконати збережений запит" msgid "The row has been deleted" msgstr "Рядок видалено" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Вбити" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "по запиту" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Показано записи " -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "всього" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Змінити" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Показати PDF схему" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Лінк не знайдено" @@ -5193,12 +5213,12 @@ msgid "Data dump options" msgstr "Налаштування експорту бази даних" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Дамп даних таблиці" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Структура таблиці" @@ -5251,9 +5271,9 @@ msgstr "Доступні MIME-types" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -5397,40 +5417,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5463,42 +5483,42 @@ msgstr "SQL result" msgid "Generated by" msgstr "Згенеровано" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5549,7 +5569,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5626,7 +5646,7 @@ msgid "Charset" msgstr "Набір символів" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr " Двійковий " @@ -5912,8 +5932,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Ім'я користувача" @@ -5932,7 +5952,7 @@ msgid "Variable" msgstr "Змінна" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Значення" @@ -5951,34 +5971,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Довільний користувач" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Використовувати текстове поле" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Довільний хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Локальний" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Цей хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Використовувати Таблицю Хостів" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6232,11 +6252,11 @@ msgstr "Виконати SQL запит(и) до БД %s" msgid "Columns" msgstr "Назви колонок" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL-запит" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6268,7 +6288,7 @@ msgstr "Лише перегляд" msgid "Location of the text file" msgstr "вкажіть розташування текстового файлу" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "каталог веб-сервера для завантаження файлів (upload directory)" @@ -6430,21 +6450,21 @@ msgid "" msgstr "" "Немає опису для цього перетворення.
Прошу питатися автора, що робить %s." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "Додати %s стовпчик(ів)" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6659,8 +6679,8 @@ msgstr "Загальні можливості" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Користувач" @@ -6697,7 +6717,7 @@ msgstr "Офіційна сторінка phpMyAdmin" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6709,21 +6729,21 @@ msgstr "" "відкритий для вторгнення і тому Вам обов'язково слід виправити цю прогалину " "у безпеці." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6731,18 +6751,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфігураційний файл потребує секретну фразу (пароль)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6751,21 +6771,21 @@ msgstr "" "Додаткова можливість роботи із залінкованими таблицями деактивована. Для " "того, щоб довідатись чому, натисніть %sтут%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7093,116 +7113,116 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Переглянути dump (схему) баз даних" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "Дозволити всі права за винятком GRANT." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Дозволити змінювати структуру наявних таблиць." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Дозволити створювати нові бази даних та таблиці." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Дозволити створювати нові таблиці." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Дозволити створювати тимчасові таблиці." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Дозволити знищувати дані з таблиць." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Дозволити знищувати бази даних та таблиці." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Дозволити знищувати таблиці." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Дозволити імпорт даних з файлів, та експорт у файли." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволити додавання користувачів та прав без перезавантаження таблиці прав." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Дозволити створення та знищення індексів." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Дозволити вставку та заміну даних." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Дозволити блокування таблиць для біжучих потоків." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Обмежити кількість нових під'єднань, які користувач може створювати протягом " "години." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Обмежити кількість запитів, які користувач може надіслати серверу протягом " "години." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7210,58 +7230,58 @@ msgstr "" "Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази " "даних, які користувач може виконати протягом години." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "Неефективно для цієї версії MySQL." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дозволити перезавантаження установок та очищення кешу сервера." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "Надати користувачу право запитувати де є slaves / masters." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Необхідно для реплікації slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Дозволити читання даних." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Надати доступ до повного списку баз даних." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Дозволити вимкнення сервера." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7271,157 +7291,157 @@ msgstr "" "під'єднань; Обов'язково для більшості адміністративних операцій таких як " "встановлення ґлобальних змінних чи припинення процесів інших користувачів." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Дозволити зміну даних." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Немає прав." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Немає" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " Зауваження: привілеї MySQL задаються по-англійськи " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Глобальні права" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Адміністратор" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Обмеження ресурсів" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Вхідна інформація (Login)" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Не змінювати пароль" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знайдено користувача." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "Користувач %s вже існує!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Було додано нового користувача." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "Ви оновили привілеї для %s." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ви змінили привілеї для %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s успішно змінено." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "Усунути %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Перезавантаження прав" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Відмічених користувачів успішно усунуто." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Права успішно перезавантажено." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Редагування привілеїв" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Відмінити" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Довільний" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Огляд користувачів" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Додати нового користувача" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Усунути відмічених користувачів" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Відмінити всі активні права користувачів та усунути їх після цього." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7434,50 +7454,50 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Права, які стосуються колонок таблиці" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Додати права для цієї бази даних" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Додати права для цієї таблиці" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Створити нового користувача з такими ж правами і ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... залишити старого." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... знищити старого з таблиці користувачів." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... анулювати всі активні права старого користувача, знищивши його після " "того." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -7485,44 +7505,44 @@ msgstr "" " ... знищити старого з таблиці користувачів та перевантажити права після " "того." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Немає" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "Користувачі, котрі мають доступ до "%s"" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "глобальний" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "специфічний для бази даних" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "шаблон" @@ -8410,7 +8430,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8816,12 +8836,12 @@ msgstr "" msgid "Validated SQL" msgstr "Перевірити SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Мітка" @@ -8830,71 +8850,71 @@ msgstr "Мітка" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Функція" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Через велику довжину,
це поле не може бути відредаговано " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr " Двійкові дані - не редагуються " -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "і потім" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Повернутись" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Вставити новий запис" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8998,12 +9018,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -9491,11 +9511,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Опис" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ви для цього маєте недостатньо прав!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Профіль було поновлено." diff --git a/po/ur.po b/po/ur.po index 748334138e..e7b01cf16c 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-05-14 12:35+0200\n" "Last-Translator: \n" "Language-Team: Urdu \n" @@ -18,7 +18,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "سبھی دکھاو" @@ -41,17 +41,20 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "تلاش" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -66,14 +69,14 @@ msgstr "تلاش" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -125,7 +128,7 @@ msgid "Database comment: " msgstr "ڈیٹا بیس رائے" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "ٹیبل کمنٹس" @@ -136,7 +139,7 @@ msgstr "ٹیبل کمنٹس" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -151,8 +154,8 @@ msgstr "کمانڈ" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -164,13 +167,13 @@ msgstr "قِسم" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "منسوخ" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -189,8 +192,8 @@ msgid "Links to" msgstr "لنک ٹو" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -206,10 +209,10 @@ msgstr "آراء-رائے" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "نہیں" @@ -225,10 +228,10 @@ msgstr "نہیں" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -255,7 +258,7 @@ msgstr "سارا منتخب کریں" msgid "Unselect All" msgstr "سارا انتخاب ختم کریں" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "ڈیٹا بیس کا نام خالی ہے!" @@ -269,81 +272,81 @@ msgstr "Database %s has been renamed to %s" msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "ڈیٹا بیس کا نام بدلیں" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "کمانڈ" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "ڈیٹا بیس کا نام بدلیں" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "ڈیٹا بیس کاپی کریں" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "ڈیٹا بیس کاپی کریں" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "سٹرکچر صرف" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "سٹرکچر اور ڈیٹا" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "صرف ڈیٹا" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "کاپی سے پہلے ڈیٹا بیس بنائیں" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "شامل کریں %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "ویلیو شامل کریں AUTO_INCREMENT" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "کولیکشن" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -355,24 +358,24 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" msgstr "دکھائیں PDF schema" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "ٹیبل" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -383,33 +386,33 @@ msgstr "" msgid "Size" msgstr "ناپ" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "استعمال میں" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "تخلیق" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "آخری دفعہ اپ ڈیٹ" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "آخری دفعہ چیک" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -418,7 +421,7 @@ msgstr[0] "%s table(s)" msgstr[1] "%s table(s)" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -448,7 +451,7 @@ msgid "Descending" msgstr "گرتا ہوا" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "دیکھیں" @@ -469,8 +472,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "یا" @@ -543,17 +546,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Browse" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -598,69 +603,30 @@ msgstr "ٹیبلز کے اندر:" msgid "Inside column:" msgstr "فیلڈ کے اندر:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "داخل کریں" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "ساخت" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "نکلالنا" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "خالی" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr " %s ٹیبل" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "ٹریکنگ ایکٹو ہے" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "ٹریکنگ ایکٹو نہیں ہے" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -669,87 +635,111 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "ویو" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "لپیٹنا" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "مجموعہ" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "چیک آل" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "ان چیک آل" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "اوورہیڈ ٹیبلز چیک کریں" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "برآمد" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "پرنٹ ویو" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "خالی" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "نکلالنا" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "ٹیبل چیک کریں" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "ٹیبلز آپٹی مائز " -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "ٹیبلز مرمت کریں" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "ٹیبلز کا تجزیہ" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "ڈیٹا ڈتشنری" @@ -757,13 +747,13 @@ msgstr "ڈیٹا ڈتشنری" msgid "Tracked tables" msgstr "ٹریکڈ ٹیبلز" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -789,8 +779,8 @@ msgstr "حالت" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "عمل" @@ -833,12 +823,12 @@ msgstr "ٹریک ٹیبل" msgid "Database Log" msgstr "ڈیٹا بیس لوگ" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -915,7 +905,7 @@ msgstr "The bookmark has been deleted." msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" @@ -940,7 +930,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "" @@ -1018,11 +1008,11 @@ msgstr "ہوسٹ نام خالی ہے!" msgid "The user name is empty!" msgstr "صارف کا نام خالی ہے" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "پاس ورڈ خالی ہے" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "پاس ورڈ ایک جیسے نہیں ہیں" @@ -1117,102 +1107,106 @@ msgid "Searching" msgstr "تلاش" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" +msgid "Hide query box" msgstr "" #: js/messages.php:85 +msgid "Show query box" +msgstr "" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "ریلیشن حذف ہو گیا" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "اندرونی ریلیشن شامل ہو گیا" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "غلطی:ریلیشن شامل نہیں ہوا" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "غلطی : ریلیشن پہلے سے موجود ہے" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "غیر فعال" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Choose column to display" msgstr "آپ کو کم از کم ایک کالم چننا ہو گا ڈسپے کیلئے۔" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1220,231 +1214,231 @@ msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "" @@ -1516,9 +1510,9 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "" @@ -1539,15 +1533,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -1783,6 +1777,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "داخل کریں" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "ساخت" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "" @@ -1838,7 +1858,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "" @@ -1892,7 +1912,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "" @@ -1904,11 +1924,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "" @@ -1917,7 +1937,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "" @@ -2015,7 +2035,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2038,14 +2058,14 @@ msgid "Select from the web server upload directory %s:" msgstr "" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "" @@ -2167,7 +2187,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2177,15 +2197,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "" @@ -2306,133 +2326,129 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Table comments" msgid "Display errors" msgstr "ٹیبل کمنٹس" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2440,60 +2456,60 @@ msgstr "" msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2501,389 +2517,389 @@ msgstr "" msgid "Dump table" msgstr "%s table(s)" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "برآمد" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "برآمد" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "General relation features" msgid "General" msgstr "جنرل ریلیشن فیچرز" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 msgid "Open Document" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "صفحہ نمبر" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Replication" msgid "Authentication" msgstr "لپیٹنا" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 msgid "SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2891,277 +2907,277 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Inside field:" msgid "Text fields" msgstr "فیلڈ کے اندر:" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Comments" msgid "Column names in first row" msgstr "آراء-رائے" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "ویلیو شامل کریں AUTO_INCREMENT" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Table comments" msgid "Display table filter" msgstr "ٹیبل کمنٹس" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3169,414 +3185,414 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3585,289 +3601,289 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "ڈیٹا بیس" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3875,121 +3891,121 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ڈیفالٹ" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -3997,58 +4013,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4069,72 +4085,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4173,7 +4189,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4202,8 +4218,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "" @@ -4215,7 +4231,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4244,18 +4260,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "" @@ -4276,8 +4292,8 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -4399,8 +4415,8 @@ msgid "Compression:" msgstr "" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "" @@ -4546,7 +4562,7 @@ msgstr "" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4579,8 +4595,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4598,49 +4614,49 @@ msgstr "" msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "ٹیبل کمنٹس" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "" @@ -5047,12 +5063,12 @@ msgid "Data dump options" msgstr "" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "" @@ -5099,9 +5115,9 @@ msgstr "" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "" @@ -5242,40 +5258,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5310,42 +5326,42 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5396,7 +5412,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "" @@ -5471,7 +5487,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "" @@ -5753,8 +5769,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "" @@ -5773,7 +5789,7 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "" @@ -5792,34 +5808,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6065,11 +6081,11 @@ msgstr "" msgid "Columns" msgstr "آراء-رائے" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "" @@ -6101,7 +6117,7 @@ msgstr "" msgid "Location of the text file" msgstr "" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "" @@ -6233,21 +6249,21 @@ msgid "" "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -6417,8 +6433,8 @@ msgstr "جنرل ریلیشن فیچرز" msgid "Protocol version" msgstr "" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "" @@ -6455,7 +6471,7 @@ msgstr "" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6463,21 +6479,21 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6485,18 +6501,18 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -6505,21 +6521,21 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6839,321 +6855,321 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "" -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7162,89 +7178,89 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "" @@ -8126,7 +8142,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8528,12 +8544,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "" @@ -8542,69 +8558,69 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr "" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "اور پھر" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -8702,12 +8718,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "" @@ -9184,11 +9200,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "" diff --git a/po/uz.po b/po/uz.po index 0f44af5846..b804105953 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Барчасини кўрсатиш" @@ -37,17 +37,20 @@ msgstr "" "Браузернинг нишондаги ойнасини янгилаб бўлмади. Эҳтимол, бош ойна ёпилган " "ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Қидириш" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "Қидириш" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -123,7 +126,7 @@ msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Жадвал изоҳи" @@ -134,7 +137,7 @@ msgstr "Жадвал изоҳи" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -149,8 +152,8 @@ msgstr "Майдон номлари" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -162,13 +165,13 @@ msgstr "Тур" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -187,8 +190,8 @@ msgid "Links to" msgstr "Алоқалар" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -204,10 +207,10 @@ msgstr "Изоҳлар" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Йўқ" @@ -223,10 +226,10 @@ msgstr "Йўқ" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -253,7 +256,7 @@ msgstr "Барчасини белгилаш" msgid "Unselect All" msgstr "Белгилашни бекор қилиш" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Маълумотлар базаси номи бўш!" @@ -267,81 +270,81 @@ msgstr " `\"%s\"` маълумотлар базасининг номи `\"%s\"` msgid "Database %s has been copied to %s" msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха кўчирилди." -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Буйруқ" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr " \"%s\" маълумотлар омбори ўчирилди." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ушбу базага ўтиш" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Фақат тузилиши" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Фақат маълумотлар" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Чекловлар қўшиш" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Нусха олинган маълумотлар базасига ўтиш" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Таққослаш" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -353,24 +356,24 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Алоқалар схемаси" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Жадвал " #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -381,33 +384,33 @@ msgstr "Қаторларсони" msgid "Size" msgstr "Ҳажми" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "ишлатилмоқда" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Тузиш" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Охирги янгиланиш" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Охирги текширув" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,7 +419,7 @@ msgstr[0] "Жадваллар сони: \"%s\"" msgstr[1] "Жадваллар сони: \"%s\"" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -446,7 +449,7 @@ msgid "Descending" msgstr "Камайиш тартибида" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Кўрсатиш" @@ -467,8 +470,8 @@ msgid "Del" msgstr "Ўчириш" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Ёки" @@ -541,17 +544,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Кўриб чиқиш" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -596,69 +601,30 @@ msgstr "Қуйидаги жадвал(лар)да қидириш:" msgid "Inside column:" msgstr "Қуйидаги майдон(лар)да қидириш: " -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Қўйиш" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Тузилиши" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "Ўчириш" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Тозалаш" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" жадвали тозаланди" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" намойиши ўчирилди" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Кузатиш фаол." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -667,87 +633,111 @@ msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Намойиш" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Жами" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Белгиланганларни: " -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Барчасини белгилаш" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Белгилашни бекор қилиш" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Экспорт" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Тозалаш" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "Ўчириш" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Жадвални текшириш" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Жадвални оптималлаштириш" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Жадвални тиклаш" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Жадвал таҳлили" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Маълумотлар луғати" @@ -755,13 +745,13 @@ msgstr "Маълумотлар луғати" msgid "Tracked tables" msgstr "Кузатилган жадваллар" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -787,8 +777,8 @@ msgstr "Ҳолат" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Амал" @@ -831,12 +821,12 @@ msgstr "Жадвални кузатиш" msgid "Database Log" msgstr "База лог файлини" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -918,7 +908,7 @@ msgstr "Хатчўп ўчирилди." msgid "Showing bookmark" msgstr "Хатчўпларни кўрсатиш" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" @@ -947,7 +937,7 @@ msgstr "" "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Орқага" @@ -1030,11 +1020,11 @@ msgstr "Хост номи бўш!" msgid "The user name is empty!" msgstr "Фойдаланувчи номи белгиланмаган!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Парол белгиланмаган!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" @@ -1141,114 +1131,122 @@ msgid "Searching" msgstr "Қидириш" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL сўровлари қутиси" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL сўровлари қутиси" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Жадвал турлари" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "Ўзгариришлар сақланди" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Алоқа ўчирилди" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Ташқи калитга (FOREIGN KEY) алоқа ўрнатилди" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Ички алоқа ўрнатилди" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Хатолик: Боғлиқлик аллақачон мавжуд." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Координаталарни сақлашда хатолик." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Алоқаларнинг асосий имкониятлари" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Фаолсизлантирилган" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Боғлиқ калитни танланг" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Ташқи калитни танланг" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Кўрсатиладиган майдонни танлаш" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Парол ўрнатиш" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генерация қилиш" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Паролни ўзгартириш" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Душ" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Садақа" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Орқага" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1256,96 +1254,96 @@ msgid "Next" msgstr "Кейинги" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Жами" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Иккилик" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "Май" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1353,178 +1351,178 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Дек" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Якш" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Душ" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Сеш" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Жум" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Шан" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Якш" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Душ" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Сеш" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Чор" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пай" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Жум" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Шан" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Вики" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ишлатилмоқда" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1604,9 +1602,9 @@ msgid "Comment" msgstr "Изоҳ" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Таҳрирлаш" @@ -1627,15 +1625,15 @@ msgid "" "removed." msgstr " %1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Маълумотлар базалари" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Хатолик" @@ -1885,6 +1883,32 @@ msgstr "Файлни юклаб олиш" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Қўйиш" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Тузилиши" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1955,7 +1979,7 @@ msgstr "" " %1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " "файлида белгиланган созлашларни тўғирланг." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Сервер" @@ -2014,7 +2038,7 @@ msgstr "MySQL жавоби: " msgid "Failed to connect to SQL validator!" msgstr "MySQL-серверга уланиб бўлмади" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "Сўров таҳлили" @@ -2026,11 +2050,11 @@ msgstr "Таҳлил керак эмас" msgid "Without PHP Code" msgstr "PHP-код олиб ташлаш" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Янгилаш" @@ -2039,7 +2063,7 @@ msgstr "Янгилаш" msgid "Skip Validate SQL" msgstr "SQL синтаксиси текширувини олиб ташлаш" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL тўғрилигини текшириш" @@ -2141,7 +2165,7 @@ msgstr "" "маълумот учун қаранг \"%s\"" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2165,14 +2189,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "тузилиш" @@ -2303,7 +2327,7 @@ msgid "Set value: %s" msgstr "Қуйидаги қийматни ўрнатиш: \"%s\"" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Асл қийматларни тиклаш" @@ -2313,15 +2337,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Сақлаш" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Тозалаш" @@ -2464,116 +2488,112 @@ msgid "Confirm DROP queries" msgstr "DROP-сўровларини тасдиқлаш" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Маълумотлар базаларини кўрсатиш афзалликлари" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Маълумотлар базасига киришда кўрсатиладиган ёрлиқ" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Маълумотлар базаси ёрлиғи" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Серверга киришда кўрсатиладиган ёрлиқ" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Сервер ёрлиғи" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Жадвалга киришда кўрсатиладиган ёрлиқ" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Жадвал ёрлиғи" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" "Маълумотлар базаси рўйхатини пастга тушадиган меню ўрнига оддий рўйхат " "шаклида кўрсатиш" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Маълумотлар базасини рўйхат шаклида кўрсатиш" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" "Серверлар рўйхатини пастга тушадиган меню ўрнига оддий рўйхат шаклида " "кўрсатиш" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Серверлар рўйхатини кўрсатиш" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Кейинги қаторни таҳрирлаш" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Имкониятларни кўрсатиш" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Хатоларга эътибор бермаслик" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Хатоларга эътибор бермаслик" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2581,32 +2601,32 @@ msgstr "" "Скрипт ишлаши мумкин бўлган секундлар сони (чегарамаслик учун [kbd]0[/kbd] " "киритинг)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Максимум бажарилиш вақти" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Файл каби сақлаш" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Файл кодировкаси" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Сиқиш" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2616,70 +2636,70 @@ msgstr "Сиқиш" msgid "Put columns names in the first row" msgstr "Майдон номларини биринчи қаторга жойлаштириш" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Майдон қийматлари қуйидаги белги ичига олинган " -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Белги олдида қуйидаги белги мавжуд " -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "NULL қийматни қуйидагига алмаштириш" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Майдонлар ичидаги сатрдан-сатрга кўчириш белгиларини олиб ташлаш" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Қаторлар бўлувчиси" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Қаторлар бўлувчиси" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-версияси" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Маълумотлар базаси номи шаблони" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Сервер номи шаблони" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Жадвал номи шаблони" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2687,116 +2707,116 @@ msgstr "Жадвал номи шаблони" msgid "Dump table" msgstr "Жадваллар сони: \"%s\"" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Жадвалга сарлавҳа қўшиш" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Жадвал сарлавҳаси" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Жадвал сарлавҳаси (давоми)" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Белги идентификатори" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME тури" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Алоқалар" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Эскпорт тури" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Серверга сақлаш" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Мавжуд файл(лар) устидан ёзиш" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Файл номи шаблонини ёдда сақлаш" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Жадвал ва майдон номларини тескари қўштирноққа олиш" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL билан мослик режими" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Тузиш, янгилаш ва текшириш саналари" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Кечиктирилган қўйиш (DELAYED INSERTS) дан фойдаланиш" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Ташқи калитларни текширишни ўчириш" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "BLOB туридаги маълумотларни ўн олтилик шаклда намойиш этиш" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "Эътибор бермаслик (IGNORE) қўйилмалардан фойдаланиш" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Тузилаёган сўровнинг максимал узунлиги" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Жадвалларни экспорт қилиш" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Транзакцияга экспортни қўшиш" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "Вақтни UTC шаклда экспорт қилиш" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "phpMyAdmin ишлатилганда хавфсиз (SSL) уланишга мажбур қилиш" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Хавфсиз (SSL) уланишга мажбур қилиш" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2804,190 +2824,190 @@ msgstr "" "Ташқи калит менюсининг тартиблаш усули: [kbd]content[/kbd] - мурожаат " "маълумотлари бўйича, [kbd]id[/kbd] - калит қийматлар бўйича" -#: libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Ташқи калит менюси тартиби" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "Агар камроқ қиймат бўлса, пастга тушувчи меню ишлатилади" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Ташқи калит чегаралари" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Кўриб чиқиш усул" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Кўриб чиқиш усулини созлаш" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Экспорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Таҳрирлаш усули" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Таҳрирлаш усулини созлаш" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Экспорт" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Экспорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Функциялар" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Генерация қилиш" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Импорт" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Импорт" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Импорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Импорт/Экспорт" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Импорт ва экспорт каталоглари ва қисиш усулларини белгилаш" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Маълумотлар базаларини кўрсатиш афзалликлари" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Навигация панели" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Навигация панели кўринишини созлаш" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Серверлар" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Серверлар кўринишини созлаш" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Жадваллар" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Жадваллар кўринишини созлаш" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Асосий рамка" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "OpenDocument матн" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Бошқа созланишлар" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Бошқа жойга сиғмаган созланишлар" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Саҳифа рақами: " -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "Сўровлар ойнаси кўринишини созлаш" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Хавфсизлик" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -2995,27 +3015,27 @@ msgstr "" "Эсда тутинг, phpMyAdmin - бу фақатгина фойдаланувчи интерфейси бўлиб, унинг " "хусусиятлари MySQL-серверининг функцияларини чегараламайди" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Асосий созланишлар" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Аутентификация усули" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Аутентификация усули" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Сервер конфигурацияси" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3023,17 +3043,17 @@ msgstr "" "Кенгайтирилган сервер конфигуарцияси, агар уларнинг маъносини аниқ " "билмасангиз, яхшиси, уларга тегманг." -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Сервернинг уланиш параметрларини киритиш" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Конфигурацион файл" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3049,56 +3069,56 @@ msgstr "" "Documentation.html#linked-tables]уланган жадваллар инфратузилмасини[/a] " "қараб чиқинг" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Экспорт танловларини мослаштириш" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Импорт танловларини мослаштириш" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Навигация панелини мослаштириш" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Асосий рамкани мослаштириш" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL сўровлари" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL сўровлари қутиси" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "SQL сўровлари қутисида кўрсатиладиган боғларни созлаш" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL сўровлари" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-сўровлар тарихи" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3106,49 +3126,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Бошланғич" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Бошланғич саҳифани созлаш" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Ёрлиқлар" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Ёрлиқлар қандай ишлашини танланг" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Матнмайдонини ишлатиш" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Экспорт танловларини мослаштириш" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! матн" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Огоҳлантириш" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3156,15 +3176,15 @@ msgstr "" "Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/Gzip]gzip" "[/a] ёрдамида сиқишни ёқиш" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "iconv учун қўшимча параметрлар" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3172,11 +3192,11 @@ msgstr "" "Агар ёқилган бўлса, phpMyAdmin, ҳатто сўровлардан бири барбод бўлганда ҳам, " "кўп қисмли сўровларни ҳисоблашни давом этади" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Кўп қисмли сўровлардаги хатоларга эътибор бермаслик" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3186,21 +3206,21 @@ msgstr "" "бериш. Бу катта файлларни юклаш учун яхши усул, лекин у транзакцияларни " "бузиши мумкин." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Қисман импорт: узишга рухсат бериш" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Такрорий қаторларга эътибор бермаслик" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3208,99 +3228,99 @@ msgstr "" "Импорт файл формати; ёдда тутингки, ушбу рўйхат (маълумотлар базаси, жадвал) " "жойлашишига боғлиқ ва фақат SQL ишлайди" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Импорт қилинаётган файл формати" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "\"LOCAL\" калит сўзини ишлатиш" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Биринчи қаторга устун номлари" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Бўш қаторларни импорт қилмаслик" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, 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:253 +#: libraries/config/messages.inc.php:252 #, 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:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Файл бошидаги эътибор бериш керак бўлмаган қаторлар (сўровлар) сони" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Қисман импорт: сўровларга эътибор бермаслик" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Бир вақтнинг ўзиданечта қатор қўйилиши мумкин" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Қўйилган қаторлар сони" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Тезкор мурожаат пиктограммаси учун нишон" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Чап рамкада логотипни кўрсатиш" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Логотипни кўрсатиш" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Чап рамканинг юқори қисмида сервер танловини кўрсатиш" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Сервер танловини кўрсатиш" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Маълумотлар базаларини дарахтда кўрсатиш" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "Маълумотлар базаларини дарахтнинг турли даражаларига бўлувчи сатр" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Маълумотлар базаси дарахтининг бўлувчиси" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3308,40 +3328,40 @@ msgstr "" "Енгил версия; маълумотлар базаларини дарахтда кўрсатиш (қуйида белгиланган " "сатр билан бўлинади)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Маълумотлар базаларини дарахтда кўрсатиш" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" "Агар барча маълумотлар базаларини кўрмоқчи бўлсангиз, ушбу танловни ўчиринг" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Енгил версиядан фойдаланиш" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Жадваллар дарахтининг максимум чуқурлиги" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Жадвалларни дарахтнинг турли даражаларига бўлувчи сатр" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Жадвал дарахтининг бўлувчиси" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Логотип боғланган URL" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3349,38 +3369,38 @@ msgstr "" "Боғланган саҳифани бош ойнада ([kbd]бош[/kbd]) ёки янги ойнада ([kbd]янги[/" "kbd]) очиш" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Логотип боғланган нишон" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Сичқонча курсори турган серверни белгилаш" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Белгилашни ёқиш" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Камроқ графикали ёрлиқларни ишлатиш" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Енгил ёрлиқлар" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, 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:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3391,11 +3411,11 @@ msgstr "" "чиқиш амалга оширилади. Агар бир нечта серверларга уланганбўлса, унда ЁЛҒОН " "(FALSE) танлови бошқа серверлардан чиқиш унитилишига олиб келиши мумкин." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Чиқишда барча \"cookies\"ларни ўчириш" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3403,11 +3423,11 @@ msgstr "" "cookie-аутентификация усулидан фойдаланилганда олдинги логин сессияси қайта " "чақирилиб олиниши керакми?" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Фойдаланувчи номини чақириб олиш" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3419,54 +3439,54 @@ msgstr "" "сақланади ва браузер ойнаси ёпилган заҳоти ўчирилади. Бу қиймат ишончсиз " "муҳитлар учун тавсия этилади." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Логин маълумотини cookie-да сақлаш" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "cookie-логин усули қанча вақт (секундларда) яроқли бўлишини белгиланг" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "cookie-логин яроқлиги" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "SQL сўрови кўрсатилганда ишлатиладиган белгиларнинг максимал сони" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "SQL сўровининг максимал узунлиги" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Чап рамкада ва базалар рўйхатида кўрсатиладиган маълумотлар базаларининг " "максимал сони" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Маълумотлар базаларининг максимал сони" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3475,29 +3495,29 @@ msgstr "" "Натижаларда кўрсатиладиган қаторлар сони. Агар натижалар қатори кўрсатилган " "қийматдан кўп бўлса, \"Олдинги\" ва \"Кейинги\" боғланишлар кўрсатилади." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Кўрсатиладиган қаторларнинг максимал сони" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Максимал жадваллар сони" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3505,49 +3525,49 @@ msgstr "" "Скрипт учун ажратиладиган байлардаги хотира миқдори, масалан [kbd]32M[/kbd] " "([kbd]0[/kbd] - чегараланмаган)." -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Хотира миқдори" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Чап менюни кўрсатиш/яшириш" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Жадвал сортировкасини ўзгартириш" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Фақат пиктограмма, фақат матн ёки ҳар иккисини ишлатиш" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Пиктограммали навигация менюси" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "HTTP орқали маълумот узатишда юқори тезликка эришиш учун GZip буферизациядан " "фойдаланинг" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip буферизация" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3559,46 +3579,46 @@ msgstr "" "[kbd]SMART[/kbd] – яъни, TIME, DATE, DATETIME ва TIMESTAMP туридаги " "майдонлар учун камайиш тартибида, акс ҳолда кўпайиш тартибида" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Асл тартиблаш қоидаси" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "MySQL маълумотлар базаларида доимий уланишлардан фойдаланиш" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Доимий уланишлар" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Жадвал операцияларини пиктограммалар ёрдамида амалга ошириш" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, 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:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Бинар (иккилик) майдонларни ҳимоялаш" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3612,121 +3632,121 @@ msgstr "" "танловни ёқинг (pmadb талаб этилади). Ушбу танлов ўчирилган бўлса, ойна " "ёпилган заҳоти сўровлар тарихи йўқолади." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Доимий сўровлар тарихи" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Журналда сақланадиган сўровлар сони" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "Сўровлар тарихи узунлиги" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Янги сўровлар ойнаси очилганда кўрсатиладиган ёрлиқ" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "Сўровлар ойнасининг ёрлиғи" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" "Кодировкаларни бир-бирига ўтказишда фойдаланиладиган функцияларни танланг" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Кодировкалаш функцияси" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Оқимли тиклаш" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Сервердаги экспорт файллар сақланадиган директория" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Сақлаш директорияси" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Агар ишлатилмаса бўш қолдиринг" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Аутентификация тартиби" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Асл қоидаларни ишлатиш учун бўш қолдиринг" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Аутентификация қоидалари" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Паролсиз қиришга рухсат бериш" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "\"root\"га киришга рухсат бериш" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "HTTP Авторизация вақтида кўрсатиладиган Оддий HTTP Авторизация Бўлими номи" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "HTTP Бўлими" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3736,19 +3756,19 @@ msgstr "" "файл йўли (ҳужжатлар каталогига жойлаштирилмаган; тавсия этилади: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "\"SweKey\" конфигурация файли" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Фойдаланиладиган аутентификация усули" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Аутентификация усули" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3756,11 +3776,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]Хатчўп[/a] ишлатмаслик учун бўш " "қолдиринг, асли: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Хатчўплар жадвали" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3768,31 +3788,31 @@ msgstr "" "Устун изоҳлари/\"mime\"-турлари ҳақидаги маълумотларни ишлатмаслик учун бўш " "қолдиринг, асли: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Устун маълумотлари жадвали" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "MySQL сервеига уланишни қисиш" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Уланишни қисиш" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Серверга уланиш тури, агар билмасангиз, \"tcp\" деб қолдиринг" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Уланиш тури" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Назорат фойдаланувчиси пароли" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3801,19 +3821,19 @@ msgstr "" "батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" "да мавжуд" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Назорат фойдаланувчиси" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Маълумотлар базалари рўйхати кўрсатилганда жадвалларни санаш" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Жадвалларни санаш" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3821,11 +3841,11 @@ msgstr "" "Дизайнер ишлатмаслик учун бўш қолдиринг, асл қиймати: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Дизайнер жадвали" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3834,30 +3854,30 @@ msgstr "" "bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]ларга " "қаранг" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA ишлатишни ўчириш" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Қайси PHP кенгайтмасидан фойдаланмоқчисиз; иложи бўлса, \"mysqli\" " "кенгайтмасидан фойдаланинг" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Фойдаланиладиган PHP кенгайтмаси" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" "Мунтазам иборалар(PCRE)га тўғри келадиган маълумотлар базаларини яшириш" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Базаларни яшириш" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3865,31 +3885,31 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL сўровлари тарихи жадвали" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "MySQL сервери ишлаётган хост номи" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Сервер хост номи" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Чиқиш URL" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Паролсиз уланишга ҳаракат қилиш" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Паролсиз уланиш" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3905,31 +3925,31 @@ msgstr "" "олдига тескари эгри чизиқ (\\) қўйишингиз керак, масалан \\\"my\\_db\\" "\" (лекин \"my_db\" эмас)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Фақат рўйхатдаги базаларни кўрсатиш" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" "Агар \"config\" аутентификация усулидан фойдаланмасангиз, бўш қолдиринг" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "\"config\" аутентификация усули пароли" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 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:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF-схема: саҳифалар жадвали" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3940,22 +3960,22 @@ msgstr "" "қаранг. Агар фойдаланмасангиз, бўшқолдиринг. Асл қиймати: [kbd]\"phpmyadmin" "\"[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "маълумотлар базаси номи" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "MySQL сервери тинглайдиган порт, асл қийматни қолдириш учун бўш қолдиринг" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Сервер порти" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3963,19 +3983,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]Алоқа боғланишлари[/a]ни " "ишлатмаслик учун, бўш қолдиринг, асл қиймати: [kbd]\"pma_relation\"[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Алоқалар жадвали" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "Мавжуд жадвалларни кўрсатиш учун ишлатиладиган SQL буйруғи" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES буйруғи" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3983,44 +4003,44 @@ msgstr "" "Намуна учун [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "аутентификация усуллари[/a]га қаранг" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Кириш сессияси номи" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Кириш URL" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL сервери тинглайдиган сокет, асл қиймати учун бўш қолдиринг" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Сервер сокети" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" "SSL (Secure Sockets Layer - ҳимояланган сокетлар протоколи) уланишдан " "фойдаланиш" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "SSL уланишдан фойдаланиш" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 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:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF-схема: жадвал координаталари" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4032,53 +4052,53 @@ msgstr "" "Кўрсатиладиган майдонлар шарҳлари сақланадиган жадвал, ишлатмаслик учун бўш " "қолдиринг, асл қиймати: [kbd]\"pma_table_info\"[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Майдонлар жадвалини кўрсатиш" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Тавсиф" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4090,25 +4110,25 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL сўровлари тарихи жадвали" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Автоматик тиклаш режими" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4120,15 +4140,15 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "\"config\" аутентификация усули фойдаланувчиси" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4137,32 +4157,32 @@ msgstr "" "ишонсангиз, унда ўчириб қўйинг. Шундай қилсангиз, ортиқча текширувларнинг " "олдини олган бўласиз ва ишлаш унумдорлигини оширган бўласиз" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Кенгайтирилган текширув" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "MySQL сервери ишлаётган хост сервер номи" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Ушбу сервернинг кенгайтирилган номи" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether 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:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Барча қаторларни кўрсатишга рухсат бериш" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4171,35 +4191,35 @@ msgstr "" "Эсда тутинг, ушбу танловни ёқишингиз [kbd]\"config\"[/kbd] аутентификация " "усулидаги паролга таъсир этмайди" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Паролни ўзгартириш формасини кўрсатиш" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Маълумотлар базаси тузиш формасини кўрсатиш" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Очиқ жадваллар рўйхати" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Таҳрирлаш/қўйиш режимида функциялар майдонини кўрсатиш" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Фукнциялармайдонини кўрсатиш" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4207,34 +4227,34 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] функцияси " "натижасига боғ кўрсатиш" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "\"phpinfo()\" функциясига боғ кўрсатиш" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "MySQL сервери ҳақида батафсил маълумот кўрсатиш" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "phpMyAdmin томонидан генерация қилинган SQL сўровларини кўрсатиш керакми?" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Show SQL сўровларини кўрсатиш" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Маълумотлар базалари ва жадваллар статискасини (масалан, дискда эгаллаган " "жойи) кўрсатиш" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Статискани кўрсатиш" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4242,11 +4262,11 @@ msgstr "" "Агар кўрсатгич контекст ойнаси ёқилган бўлса ва маълумотлар базаларида шарҳ " "ўрнатилган бўлса, ушбу танлов база шарҳи ва ҳақиқий номи ўрнини алмаштиради" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "База номи ўрнига унинг шарҳини кўрсатиш" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4258,61 +4278,61 @@ msgstr "" "директивасида кўрсатилган усулда жадваллар бўлинади, лекин жадвал номлари " "ўзгаришсиз қолади" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Жадвал номи ўрнига унинг шарҳини кўрсатиш" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Жадвал шарҳларини кўрсатгич контекст ойнасида кўрсатиш" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Ишлатилаётган жадвалларни белгилаш ва қулфланган жадваллари мавжуд бўлган " "маълумотлар базаларини кўришга имкон бериш" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Қулфланган жадвалларни ташлаб кетишлик" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Парол" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Фойдаланувчи" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4320,65 +4340,65 @@ msgstr "" "\"База тузиш\" формасида маълумотлар базаси номини таклиф этинг ёки матн " "майдонини бўш қолдиринг" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Янги база номини таклиф этиш" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR майдонидаги қаторлар сони" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Жадвал ёрлиғи" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4390,38 +4410,38 @@ msgstr "" "келаётган HTTP_X_FORWARDED_FOR (X-Forwarded-For) сарлавҳани ишончли деб " "қабул қилишини таъминлайди: [br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "IP бўйича рухсат бериш/рад этиш учун ишонарли прокси-серверлар рўйхати" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "Серверда импорт файллари сақланадиган директория" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Импорт директорияси" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" "Маълумотлар базаси ичидаги маълумотларни тўлалигича қидиришга рухсат бериш" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Базани қидиришдан фойдаланиш" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4431,15 +4451,15 @@ msgstr "" "неча сўровниўз ичига олиши мумкинлиги \"libraries/import.lib.php\" файлида " "белгиланган." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Кенгайтирилган ибора" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Охирги версияни текшириш" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4447,7 +4467,7 @@ msgstr "" "Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] қисишни ёқиш" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4476,74 +4496,74 @@ msgid "Signon authentication" msgstr "Аутентификация тартиби" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "\"LOAD DATA\" ишлатилган CSV" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS иш китоби" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX иш китоби" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document жадвали" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Рангни танлаш" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Маълумотлар базаси экспорт параметрлари" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Маълумотлар" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel учун CSV" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenDocument матн" @@ -4592,7 +4612,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Ҳодисалар" @@ -4621,8 +4641,8 @@ msgid "Designer" msgstr "Дизайнер" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Привилегиялар" @@ -4634,7 +4654,7 @@ msgstr "Муолажалар" msgid "Return type" msgstr "Қайтариладиган тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4667,18 +4687,18 @@ msgid "Details..." msgstr "Тафсилотлар..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Паролни ўзгартириш" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Парол йўқ" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Тасдиқлаш" @@ -4701,8 +4721,8 @@ msgstr "Янги маълумотлар базаси тузиш" msgid "Create" msgstr "Тузиш" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Привилегиялар йўқ" @@ -4850,8 +4870,8 @@ msgid "Compression:" msgstr "Сиқиш" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Йўқ" @@ -5032,7 +5052,7 @@ msgstr "Индекс бўйича сортировка қилиш" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5067,8 +5087,8 @@ msgstr "Иккилик маълумотларни кўрсатиш" msgid "Show BLOB contents" msgstr "BLOB туридаги маълумотларни кўрсатиш" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Яшириш" @@ -5086,49 +5106,49 @@ msgstr "Белгиланган сўровни бажариш" msgid "The row has been deleted" msgstr "Ёзув ўчирилди" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Тугатиш" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "сўров бўйича" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Ёзувларни кўрсатиш" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "жами" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "Ўзгартириш" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Чоп этиш версияси (тўла)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схемани кўрсатиш" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Алоқа топилмади" @@ -5608,12 +5628,12 @@ msgid "Data dump options" msgstr "Маълумотлар базаларини кўрсатиш афзалликлари" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Жадвал маълумотларини дамп қилиш" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Жадвал тузилиши" @@ -5666,9 +5686,9 @@ msgstr "Мавжуд MIME турлари" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Хост" @@ -5814,40 +5834,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Муолажалар" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Функциялар" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Жадвалларнинг ташқи калитида чекловлар" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "ЖАДВАЛ УЧУН MIME ТУРЛАРИ" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "Жадвал алоқалари" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Триггерлар" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Намойиш этиш учун тузилма" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Намойиш этиш учун тузилма" @@ -5882,44 +5902,44 @@ msgstr "SQL сўрови натижаси" msgid "Generated by" msgstr "Тузилган" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " "бажаришингиз мумкин:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Ушбу базага ўтиш" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "танловлар" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Ушбу жадвалга ўтиш" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Ушбу кўринишга ўтиш" @@ -5973,7 +5993,7 @@ msgstr "" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Жадвал номи" @@ -6061,7 +6081,7 @@ msgid "Charset" msgstr "Кодировка" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Иккилик" @@ -6355,8 +6375,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Фойдаланувчи номи" @@ -6375,7 +6395,7 @@ msgid "Variable" msgstr "Ўзгарувчи" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Қиймати" @@ -6396,34 +6416,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Тобе репликация фойдаланувчисини қўшиш" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Ҳар қайси фойдаланувчи" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Матнмайдонини ишлатиш" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Ҳар қайси хост" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Локал" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Ушбу хост" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Хостлар жадвалидан фойдаланиш" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6679,11 +6699,11 @@ msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)н msgid "Columns" msgstr "Майдон номлари" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" @@ -6715,7 +6735,7 @@ msgstr "Фақат кўриш" msgid "Location of the text file" msgstr "Файлни танлаш" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Юклаш каталогидан" @@ -6882,22 +6902,22 @@ msgstr "" "Ҳозирги ватқда тавсиф мавжуд эмас.
Ишлатилаётган \"%s\" ўгиришлар " "намойиши функцияларининг иши яқин орада тавсифланади. " -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Жадвал тури" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Бўлакларни (PARTITIONS) белгилаш" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Устун(лар) қўшиш" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7154,8 +7174,8 @@ msgstr "танловлар" msgid "Protocol version" msgstr "Протокол версияси" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Фойдаланувчи" @@ -7192,7 +7212,7 @@ msgstr " phpMyAdmin расмий веб-саҳифаси" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7204,7 +7224,7 @@ msgstr "" "созланган MySQL сервери хавфсизлик жиҳатидан анча заиф ҳисобланади, шунинг " "учун \"root\" суперфойдаланувчисига парол ўрнатиш қатъиян тавсия этилади." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7214,7 +7234,7 @@ msgstr "" "func_overload параметри ёқилган. Маълумот йўқолиши олдини олиш учун, ушбу " "параметр ўчирилиши керак!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7225,7 +7245,7 @@ msgstr "" "маълумот йўқолишига олиб келиши мумкин. PHP \"mbstring\" кенгайтмасини " "ўрнатиш қатъий тавсия этилади." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7238,13 +7258,13 @@ msgstr "" "давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin дастурида " "конфигурация қилганингиздан тезроқ тугайди." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "cookie-аутентификация ишлатилганда, конфигурацион файлдаги $cfg" "[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7254,7 +7274,7 @@ msgstr "" "каталоги ҳалиям мавжуд. phpMyAdmin муваффақиятли ўрнатилгандан кейин, уни " "ўчириш тавсия этилади." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7263,7 +7283,7 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7273,7 +7293,7 @@ msgstr "" "баъзи функциялари ишламайди. Масалан, навигация ойнаси автоматик тарзда " "янгиланиб турмайди." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7282,7 +7302,7 @@ msgstr "" "MySQL-клиент версияси (\"%s\") ўрнатилган MySQL-сервер версияси(\"%s\")дан " "фарқ қилмоқда. Бу ҳолат нохуш оқибатларга олиб келиши мумкин." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7631,114 +7651,114 @@ msgstr "Жадвал турлари" msgid "View dump (schema) of databases" msgstr "Маълумотлар базалари дампини (схемасини) намойиш этиш" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Сақланадиган муолажалар тузишга рухсат беради" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Янги жадваллар тузишга рухсат беради" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Вақтинчалик жадваллар тузишга рухсат беради" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Маълумотларни ўчиришга рухсат беради" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Жадвалларни ўчиришга рухъсат беради" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан " "привилегиялар қўшишга рухсат беради" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7746,64 +7766,64 @@ msgstr "" "Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки " "маълумотлар базасини ўзгартирадиган буйруқлар сони" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган " "уланишлар сони" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат " "беради" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат " "беради" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Маълумотларни чақиришга рухсат беради" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Сервер ишини якунлашга рухсат беради" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7813,163 +7833,163 @@ msgstr "" "(Кўпгина административ вазифаларни бажариш учун керак, масалан, глобал " "ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" "Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) " "тузиш ва уларни ўчиришга рухсат беради" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Маълумотларни ўзгартиришга рухсат беради" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Привилегиялар йўқ" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Йўқ" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади." -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Глобал привилегиялар" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Администрация" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Ресурслардан фойдаланишни чеклаш" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор " "қилади." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Паролни ўзгартирмаслик" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Биронта ҳам фойдаланувчи топилмади." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr " \"%s\" номли фойдаланувчи мавжуд!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr " \"%s\" учун привилегиялар ўзгартирилди." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr " \"%s\" фойдаланувчининг привилегиялари бекор қилинди." -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "\"%s\" ўчирилмоқда" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Привилегиялар қайта юкланмоқда" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Привилегияларни таҳрирлаш" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Бекор қилиш" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Ҳар қайси" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Янги фойдаланувчи қўшиш" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " "ўчириш." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7982,98 +8002,98 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Майдон привилегиялари" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари " "ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак." -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr " ва эскисини сақлаш." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Йўқ" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "Глобал" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "Гуруҳлаш белгиси" @@ -9123,7 +9143,7 @@ msgstr "Манбага уланиб бўлмади" msgid "Could not connect to the target" msgstr "Нишонга уланиб бўлмади" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9644,12 +9664,12 @@ msgstr "SQL-сўровни кўрсатиш" msgid "Validated SQL" msgstr "SQL тўғрилигини текшириш" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr " `\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Хатчўп белгиси" @@ -9658,72 +9678,72 @@ msgstr "Хатчўп белгиси" msgid "Table %1$s has been altered successfully" msgstr "%1$s жадвали муваффақиятли ўзгартирилди" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Функция" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "Маълумотлар кўплиги сабали
ўзгартириш қийишлашиши мумкин" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "BLOB омбори мурожаатларини ўчириш" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "BLOB омборига юклаш" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "ва сўнг" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9836,12 +9856,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "\"%s\" номли жадвал мавжуд!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "%1$s жадвали тузилди." @@ -10340,11 +10360,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Тавсифи" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ушбу саҳифага кириш учун Сизда етарли ҳуқуқ мавжуд эмас!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Профил янгиланди." diff --git a/po/uz@latin.po b/po/uz@latin.po index 7ad1a9d249..15f4112fc6 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "Barchasini ko‘rsatish" @@ -38,17 +38,20 @@ msgstr "" "yopilgan yoki brauzer xavfsizlik yuzasidan oynalararo yangilashni blokirovka " "qilmoqda" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Qidirish" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -63,14 +66,14 @@ msgstr "Qidirish" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -124,7 +127,7 @@ msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "Jadval izohi" @@ -135,7 +138,7 @@ msgstr "Jadval izohi" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -150,8 +153,8 @@ msgstr "Maydon nomlari" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -163,13 +166,13 @@ msgstr "Tur" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -188,8 +191,8 @@ msgid "Links to" msgstr "Aloqalar" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -205,10 +208,10 @@ msgstr "Izohlar" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "Yo‘q" @@ -224,10 +227,10 @@ msgstr "Yo‘q" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -254,7 +257,7 @@ msgstr "Barchasini belgilash" msgid "Unselect All" msgstr "Belgilashni bekor qilish" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "Ma`lumotlar bazasi nomi bo‘sh!" @@ -268,81 +271,81 @@ msgstr " `\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi." msgid "Database %s has been copied to %s" msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "Buyruq" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr " \"%s\" ma`lumotlar ombori o‘chirildi." -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ushbu bazaga o‘tish" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "Faqat tuzilishi" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "Faqat ma`lumotlar" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "Cheklovlar qo‘shish" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "Taqqoslash" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -354,24 +357,24 @@ msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Aloqalar sxemasi" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "Jadval " #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -382,33 +385,33 @@ msgstr "Qatorlarsoni" msgid "Size" msgstr "Hajmi" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "ishlatilmoqda" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "Tuzish" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "Oxirgi yangilanish" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "Oxirgi tekshiruv" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -417,7 +420,7 @@ msgstr[0] "Jadvallar soni: \"%s\"" msgstr[1] "Jadvallar soni: \"%s\"" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -447,7 +450,7 @@ msgid "Descending" msgstr "Kamayish tartibida" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "Ko‘rsatish" @@ -468,8 +471,8 @@ msgid "Del" msgstr "O‘chirish" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "Yoki" @@ -542,17 +545,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "Ko‘rib chiqish" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -598,69 +603,30 @@ msgstr "Quyidagi jadval(lar)da qidirish:" msgid "Inside column:" msgstr "Quyidagi maydon(lar)da qidirish: " -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "Qo‘yish" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "Tuzilishi" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "O‘chirish" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "Tozalash" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" jadvali tozalandi" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" namoyishi o‘chirildi" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "Kuzatish faol." -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "Kuzatish faol emas." -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -669,87 +635,111 @@ msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "Namoyish" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "Jami" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "Belgilanganlarni: " -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "Barchasini belgilash" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "Belgilashni bekor qilish" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "Eksport" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "Tozalash" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "O‘chirish" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "Jadvalni tekshirish" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "Jadvalni optimallashtirish" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "Jadvalni tiklash" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "Jadval tahlili" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "Ma`lumotlar lug‘ati" @@ -757,13 +747,13 @@ msgstr "Ma`lumotlar lug‘ati" msgid "Tracked tables" msgstr "Kuzatilgan jadvallar" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -789,8 +779,8 @@ msgstr "Holat" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "Amal" @@ -833,12 +823,12 @@ msgstr "Jadvalni kuzatish" msgid "Database Log" msgstr "Baza log faylini" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -920,7 +910,7 @@ msgstr "Xatcho‘p o‘chirildi." msgid "Showing bookmark" msgstr "Xatcho‘plarni ko‘rsatish" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" xatcho‘pi tuzildi" @@ -949,7 +939,7 @@ msgstr "" "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "Orqaga" @@ -1035,11 +1025,11 @@ msgstr "Xost nomi bo‘sh!" msgid "The user name is empty!" msgstr "Foydalanuvchi nomi belgilanmagan!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "Parol belgilanmagan!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" @@ -1146,115 +1136,123 @@ msgid "Searching" msgstr "Qidirish" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL so‘rovlari qutisi" #: js/messages.php:85 #, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL so‘rovlari qutisi" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Jadval turlari" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "O‘zgaririshlar saqlandi" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "Aloqa o‘chirildi" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "Tashqi kalitga (FOREIGN KEY) aloqa o‘rnatildi" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "Ichki aloqa o‘rnatildi" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "Xatolik: Bog‘liqlik allaqachon mavjud." -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "Koordinatalarni saqlashda xatolik." -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "Aloqalarning asosiy imkoniyatlari" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "Faolsizlantirilgan" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "Bog‘liq kalitni tanlang" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "Tashqi kalitni tanlang" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Ko‘rsatiladigan maydonni tanlash" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Parol o‘rnatish" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generatsiya qilish" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Parolni o‘zgartirish" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dush" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Sadaqa" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Orqaga" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1262,96 +1260,96 @@ msgid "Next" msgstr "Keyingi" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jami" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Ikkilik" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "May" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iyun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iyul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avg" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1359,178 +1357,178 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dek" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Yaksh" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dush" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sesh" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Shan" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Yaksh" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dush" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sesh" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Chor" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pay" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Shan" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Viki" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ishlatilmoqda" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1610,9 +1608,9 @@ msgid "Comment" msgstr "Izoh" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "Tahrirlash" @@ -1633,15 +1631,15 @@ msgid "" "removed." msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "Ma`lumotlar bazalari" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Xatolik" @@ -1891,6 +1889,32 @@ msgstr "Faylni yuklab olish" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "Qo‘yish" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "Tuzilishi" + #: libraries/chart.lib.php:40 #, fuzzy #| msgid "Show statistics" @@ -1962,7 +1986,7 @@ msgstr "" " %1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin " "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "Server" @@ -2022,7 +2046,7 @@ msgstr "MySQL javobi: " msgid "Failed to connect to SQL validator!" msgstr "MySQL-serverga ulanib bo‘lmadi" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "So‘rov tahlili" @@ -2034,11 +2058,11 @@ msgstr "Tahlil kerak emas" msgid "Without PHP Code" msgstr "PHP-kod olib tashlash" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "PHP-kod" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "Yangilash" @@ -2047,7 +2071,7 @@ msgstr "Yangilash" msgid "Skip Validate SQL" msgstr "SQL sintaksisi tekshiruvini olib tashlash" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "SQL to‘g‘riligini tekshirish" @@ -2149,7 +2173,7 @@ msgstr "" "ma`lumot uchun qarang \"%s\"" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2173,14 +2197,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "tuzilish" @@ -2311,7 +2335,7 @@ msgid "Set value: %s" msgstr "Quyidagi qiymatni o‘rnatish: \"%s\"" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "Asl qiymatlarni tiklash" @@ -2321,15 +2345,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "Saqlash" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "Tozalash" @@ -2473,116 +2497,112 @@ msgid "Confirm DROP queries" msgstr "DROP-so‘rovlarini tasdiqlash" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy #| msgid "Databases display options" msgid "Default display direction" msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "Ma`lumotlar bazasiga kirishda ko‘rsatiladigan yorliq" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Ma`lumotlar bazasi yorlig‘i" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Serverga kirishda ko‘rsatiladigan yorliq" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Server yorlig‘i" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Jadvalga kirishda ko‘rsatiladigan yorliq" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Jadval yorlig‘i" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" "Ma`lumotlar bazasi ro‘yxatini pastga tushadigan menyu o‘rniga oddiy ro‘yxat " "shaklida ko‘rsatish" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Ma`lumotlar bazasini ro‘yxat shaklida ko‘rsatish" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 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:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Serverlar ro‘yxatini ko‘rsatish" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Keyingi qatorni tahrirlash" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Imkoniyatlarni ko‘rsatish" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Xatolarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Xatolarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -2590,32 +2610,32 @@ msgstr "" "Skript ishlashi mumkin bo‘lgan sekundlar soni (chegaramaslik uchun [kbd]0[/" "kbd] kiriting)" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "Maksimum bajarilish vaqti" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "Fayl kabi saqlash" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "Fayl kodirovkasi" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "Siqish" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2625,70 +2645,70 @@ msgstr "Siqish" msgid "Put columns names in the first row" msgstr "Maydon nomlarini birinchi qatorga joylashtirish" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Maydon qiymatlari quyidagi belgi ichiga olingan " -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Belgi oldida quyidagi belgi mavjud " -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "NULL qiymatni quyidagiga almashtirish" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 #, 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:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Qatorlar bo‘luvchisi" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "Qatorlar bo‘luvchisi" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-versiyasi" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "Ma`lumotlar bazasi nomi shabloni" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "Server nomi shabloni" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "Jadval nomi shabloni" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2696,116 +2716,116 @@ msgstr "Jadval nomi shabloni" msgid "Dump table" msgstr "Jadvallar soni: \"%s\"" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "Jadvalga sarlavha qo‘shish" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "Jadval sarlavhasi" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "Jadval sarlavhasi (davomi)" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "Belgi identifikatori" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME turi" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "Aloqalar" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Eskport turi" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "Serverga saqlash" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "Mavjud fayl(lar) ustidan yozish" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "Fayl nomi shablonini yodda saqlash" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, 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:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL bilan moslik rejimi" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "Tuzish, yangilash va tekshirish sanalari" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "Kechiktirilgan qo‘yish (DELAYED INSERTS) dan foydalanish" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "BLOB turidagi ma`lumotlarni o‘n oltilik shaklda namoyish etish" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "E`tibor bermaslik (IGNORE) qo‘yilmalardan foydalanish" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "Tuzilayogan so‘rovning maksimal uzunligi" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Jadvallarni eksport qilish" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "Tranzaksiyaga eksportni qo‘shish" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "Vaqtni UTC shaklda eksport qilish" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "phpMyAdmin ishlatilganda xavfsiz (SSL) ulanishga majbur qilish" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "Xavfsiz (SSL) ulanishga majbur qilish" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2813,190 +2833,190 @@ 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "Tashqi kalit menyusi tartibi" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 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:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "Tashqi kalit chegaralari" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "Ko‘rib chiqish usul" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "Ko‘rib chiqish usulini sozlash" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Eksport afzalliklarini sozlash" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "Tahrirlash usuli" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "Tahrirlash usulini sozlash" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "Eksport" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "Eksport afzalliklarini sozlash" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funksiyalar" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generatsiya qilish" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "Import" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "Import afzalliklarini sozlash" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "Import/Eksport" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "Import va eksport kataloglari va qisish usullarini belgilash" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigatsiya paneli" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "Navigatsiya paneli ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "Serverlar" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "Serverlar ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "Jadvallar" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "Jadvallar ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Asosiy ramka" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "OpenDocument matn" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "Boshqa sozlanishlar" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "Boshqa joyga sig‘magan sozlanishlar" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Sahifa raqami: " -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "So‘rovlar oynasi ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "Xavfsizlik" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3004,27 +3024,27 @@ msgstr "" "Esda tuting, phpMyAdmin - bu faqatgina foydalanuvchi interfeysi bo‘lib, " "uning xususiyatlari MySQL-serverining funksiyalarini chegaralamaydi" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "Asosiy sozlanishlar" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Autentifikatsiya usuli" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Autentifikatsiya usuli" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "Server konfiguratsiyasi" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3032,17 +3052,17 @@ msgstr "" "Kengaytirilgan server konfiguarsiyasi, agar ularning ma`nosini aniq " "bilmasangiz, yaxshisi, ularga tegmang." -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "Serverning ulanish parametrlarini kiritish" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Konfiguratsion fayl" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3058,56 +3078,56 @@ msgstr "" "Documentation.html#linked-tables]ulangan jadvallar infratuzilmasini[/a] " "qarab chiqing" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "Eksport tanlovlarini moslashtirish" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "Import tanlovlarini moslashtirish" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "Navigatsiya panelini moslashtirish" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "Asosiy ramkani moslashtirish" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL so‘rovlari" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL so‘rovlari qutisi" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "SQL so‘rovlari qutisida ko‘rsatiladigan bog‘larni sozlash" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL so‘rovlari" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-so‘rovlar tarixi" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3115,49 +3135,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "Boshlang‘ich" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "Boshlang‘ich sahifani sozlash" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "Yorliqlar" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "Yorliqlar qanday ishlashini tanlang" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Matnmaydonini ishlatish" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Eksport tanlovlarini moslashtirish" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! matn" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Ogohlantirish" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3165,15 +3185,15 @@ msgstr "" "Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/Gzip]" "gzip[/a] yordamida siqishni yoqish" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "iconv uchun qo‘shimcha parametrlar" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3181,11 +3201,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:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "Ko‘p qismli so‘rovlardagi xatolarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3195,21 +3215,21 @@ msgstr "" "ruxsat berish. Bu katta fayllarni yuklash uchun yaxshi usul, lekin u " "tranzaksiyalarni buzishi mumkin." -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "Qisman import: uzishga ruxsat berish" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "Takroriy qatorlarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3217,100 +3237,100 @@ 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "Import qilinayotgan fayl formati" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "\"LOCAL\" kalit so‘zini ishlatish" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "Birinchi qatorga ustun nomlari" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Bo‘sh qatorlarni import qilmaslik" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 #, 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:253 +#: libraries/config/messages.inc.php:252 #, 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:254 +#: libraries/config/messages.inc.php:253 #, 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:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "Qisman import: so‘rovlarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, 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:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "Bir vaqtning o‘zidanechta qator qo‘yilishi mumkin" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "Qo‘yilgan qatorlar soni" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "Tezkor murojaat piktogrammasi uchun nishon" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "Chap ramkada logotipni ko‘rsatish" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "Logotipni ko‘rsatish" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "Chap ramkaning yuqori qismida server tanlovini ko‘rsatish" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "Server tanlovini ko‘rsatish" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Display databases in a tree" msgid "Display table filter" msgstr "Ma`lumotlar bazalarini daraxtda ko‘rsatish" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "Ma`lumotlar bazalarini daraxtning turli darajalariga bo‘luvchi satr" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "Ma`lumotlar bazasi daraxtining bo‘luvchisi" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -3318,41 +3338,41 @@ msgstr "" "Yengil versiya; ma`lumotlar bazalarini daraxtda ko‘rsatish (quyida " "belgilangan satr bilan bo‘linadi)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "Ma`lumotlar bazalarini daraxtda ko‘rsatish" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" "Agar barcha ma`lumotlar bazalarini ko‘rmoqchi bo‘lsangiz, ushbu tanlovni " "o‘chiring" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "Yengil versiyadan foydalanish" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "Jadvallar daraxtining maksimum chuqurligi" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "Jadvallarni daraxtning turli darajalariga bo‘luvchi satr" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "Jadval daraxtining bo‘luvchisi" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logotip bog‘langan URL" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -3360,38 +3380,38 @@ msgstr "" "Bog‘langan sahifani bosh oynada ([kbd]bosh[/kbd]) yoki yangi oynada ([kbd]" "yangi[/kbd]) ochish" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logotip bog‘langan nishon" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "Sichqoncha kursori turgan serverni belgilash" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "Belgilashni yoqish" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "Kamroq grafikali yorliqlarni ishlatish" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "Yengil yorliqlar" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 #, 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:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3403,11 +3423,11 @@ msgstr "" "ulanganbo‘lsa, unda YOLG‘ON (FALSE) tanlovi boshqa serverlardan chiqish " "unitilishiga olib kelishi mumkin." -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "Chiqishda barcha \"cookies\"larni o‘chirish" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -3415,11 +3435,11 @@ msgstr "" "cookie-autentifikatsiya usulidan foydalanilganda oldingi login sessiyasi " "qayta chaqirilib olinishi kerakmi?" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "Foydalanuvchi nomini chaqirib olish" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3431,55 +3451,55 @@ msgstr "" "sessiya uchun saqlanadi va brauzer oynasi yopilgan zahoti o‘chiriladi. Bu " "qiymat ishonchsiz muhitlar uchun tavsiya etiladi." -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "Login ma`lumotini cookie-da saqlash" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 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:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "cookie-login yaroqligi" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 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:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "SQL so‘rovining maksimal uzunligi" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Chap ramkada va bazalar ro‘yxatida ko‘rsatiladigan ma`lumotlar bazalarining " "maksimal soni" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "Ma`lumotlar bazalarining maksimal soni" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3489,29 +3509,29 @@ msgstr "" "ko‘rsatilgan qiymatdan ko‘p bo‘lsa, \"Oldingi\" va \"Keyingi\" bog‘lanishlar " "ko‘rsatiladi." -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "Ko‘rsatiladigan qatorlarning maksimal soni" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "Maksimal jadvallar soni" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -3519,49 +3539,49 @@ msgstr "" "Skript uchun ajratiladigan baylardagi xotira miqdori, masalan [kbd]32M[/kbd] " "([kbd]0[/kbd] - chegaralanmagan)." -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "Xotira miqdori" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 #, fuzzy #| msgid "Show/Hide left menu" msgid "Show left delete link" msgstr "Chap menyuni ko‘rsatish/yashirish" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Jadval sortirovkasini o‘zgartirish" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "Faqat piktogramma, faqat matn yoki har ikkisini ishlatish" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "Piktogrammali navigatsiya menyusi" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "HTTP orqali ma`lumot uzatishda yuqori tezlikka erishish uchun GZip " "buferizatsiyadan foydalaning" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip buferizatsiya" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3573,46 +3593,46 @@ 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "Asl tartiblash qoidasi" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "MySQL ma`lumotlar bazalarida doimiy ulanishlardan foydalanish" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "Doimiy ulanishlar" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "Jadval operatsiyalarini piktogrammalar yordamida amalga oshirish" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 #, 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:330 +#: libraries/config/messages.inc.php:329 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Binar (ikkilik) maydonlarni himoyalash" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3626,122 +3646,122 @@ 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "Doimiy so‘rovlar tarixi" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "Jurnalda saqlanadigan so‘rovlar soni" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "So‘rovlar tarixi uzunligi" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "Yangi so‘rovlar oynasi ochilganda ko‘rsatiladigan yorliq" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "So‘rovlar oynasining yorlig‘i" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 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:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "Kodirovkalash funksiyasi" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Oqimli tiklash" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "Serverdagi eksport fayllar saqlanadigan direktoriya" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "Saqlash direktoriyasi" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "Agar ishlatilmasa bo‘sh qoldiring" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Autentifikatsiya tartibi" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "Asl qoidalarni ishlatish uchun bo‘sh qoldiring" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Autentifikatsiya qoidalari" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "Parolsiz qirishga ruxsat bеrish" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "\"root\"ga kirishga ruxsat berish" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "HTTP Avtorizatsiya vaqtida ko‘rsatiladigan Oddiy HTTP Avtorizatsiya Bo‘limi " "nomi" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "HTTP Bo‘limi" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3751,19 +3771,19 @@ msgstr "" "konfiguratsion fayl yo‘li (hujjatlar katalogiga joylashtirilmagan; tavsiya " "etiladi: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "\"SweKey\" konfiguratsiya fayli" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "Foydalaniladigan autentifikatsiya usuli" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "Autentifikatsiya usuli" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3771,11 +3791,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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "Xatcho‘plar jadvali" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3783,31 +3803,31 @@ msgstr "" "Ustun izohlari/\"mime\"-turlari haqidagi ma`lumotlarni ishlatmaslik uchun " "bo‘sh qoldiring, asli: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "Ustun ma`lumotlari jadvali" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "MySQL serveiga ulanishni qisish" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "Ulanishni qisish" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Serverga ulanish turi, agar bilmasangiz, \"tcp\" deb qoldiring" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "Ulanish turi" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "Nazorat foydalanuvchisi paroli" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3816,19 +3836,19 @@ msgstr "" "batafsil ma`lumot [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" "da mavjud" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "Nazorat foydalanuvchisi" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "Ma`lumotlar bazalari ro‘yxati ko‘rsatilganda jadvallarni sanash" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "Jadvallarni sanash" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3836,11 +3856,11 @@ msgstr "" "Dizayner ishlatmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "Dizayner jadvali" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3849,30 +3869,30 @@ msgstr "" "\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" "larga qarang" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA ishlatishni o‘chirish" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Qaysi PHP kengaytmasidan foydalanmoqchisiz; iloji bo‘lsa, \"mysqli\" " "kengaytmasidan foydalaning" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "Foydalaniladigan PHP kengaytmasi" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 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:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "Bazalarni yashirish" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3880,31 +3900,31 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL so‘rovlari tarixi jadvali" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "MySQL sеrvеri ishlayotgan xost nomi" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "Sеrvеr xost nomi" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "Chiqish URL" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "Parolsiz ulanishga harakat qilish" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "Parolsiz ulanish" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3920,31 +3940,31 @@ msgstr "" "oldiga teskari egri chiziq (\\) qo‘yishingiz kerak, masalan \\\"my\\_db\\" "\" (lekin \"my_db\" emas)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "Faqat ro‘yxatdagi bazalarni ko‘rsatish" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" "Agar \"config\" autentifikatsiya usulidan foydalanmasangiz, bo‘sh qoldiring" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "\"config\" autentifikatsiya usuli paroli" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 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]" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF-sxema: sahifalar jadvali" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3955,22 +3975,22 @@ msgstr "" "ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" "\"phpmyadmin\"[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ma`lumotlar bazasi nomi" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 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:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "Server porti" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3978,19 +3998,19 @@ 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:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "Aloqalar jadvali" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "Mavjud jadvallarni ko‘rsatish uchun ishlatiladigan SQL buyrug‘i" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES buyrug‘i" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3998,44 +4018,44 @@ msgstr "" "Namuna uchun [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "autentifikatsiya usullari[/a]ga qarang" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Kirish sessiyasi nomi" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "Kirish URL" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 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:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "Server soketi" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" "SSL (Secure Sockets Layer - himoyalangan soketlar protokoli) ulanishdan " "foydalanish" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "SSL ulanishdan foydalanish" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 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]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF-sxema: jadval koordinatalari" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4047,53 +4067,53 @@ msgstr "" "Ko‘rsatiladigan maydonlar sharhlari saqlanadigan jadval, ishlatmaslik uchun " "bo‘sh qoldiring, asl qiymati: [kbd]\"pma_table_info\"[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Maydonlar jadvalini ko‘rsatish" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Tavsif" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4105,25 +4125,25 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL so‘rovlari tarixi jadvali" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Avtomatik tiklash rejimi" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4135,15 +4155,15 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "\"config\" autentifikatsiya usuli foydalanuvchisi" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4153,21 +4173,21 @@ msgstr "" "tekshiruvlarning oldini olgan bo‘lasiz va ishlash unumdorligini oshirgan " "bo‘lasiz" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "Kengaytirilgan tekshiruv" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 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:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "Ushbu serverning kengaytirilgan nomi" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4175,11 +4195,11 @@ 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:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "Barcha qatorlarni ko‘rsatishga ruxsat berish" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4188,35 +4208,35 @@ msgstr "" "Esda tuting, ushbu tanlovni yoqishingiz [kbd]\"config\"[/kbd] " "autentifikatsiya usulidagi parolga ta`sir etmaydi" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "Parolni o‘zgartirish formasini ko‘rsatish" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "Ma`lumotlar bazasi tuzish formasini ko‘rsatish" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Ochiq jadvallar ro‘yxati" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "Tahrirlash/qo‘yish rejimida funksiyalar maydonini ko‘rsatish" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "Fuknsiyalarmaydonini ko‘rsatish" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4224,35 +4244,35 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] funksiyasi " "natijasiga bog‘ ko‘rsatish" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "\"phpinfo()\" funksiyasiga bog‘ ko‘rsatish" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "MySQL serveri haqida batafsil ma`lumot ko‘rsatish" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "phpMyAdmin tomonidan generatsiya qilingan SQL so‘rovlarini ko‘rsatish " "kerakmi?" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "Show SQL so‘rovlarini ko‘rsatish" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Ma`lumotlar bazalari va jadvallar statiskasini (masalan, diskda egallagan " "joyi) ko‘rsatish" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "Statiskani ko‘rsatish" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4261,11 +4281,11 @@ msgstr "" "sharh o‘rnatilgan bo‘lsa, ushbu tanlov baza sharhi va haqiqiy nomi o‘rnini " "almashtiradi" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "Baza nomi o‘rniga uning sharhini ko‘rsatish" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4277,61 +4297,61 @@ msgstr "" "direktivasida ko‘rsatilgan usulda jadvallar bo‘linadi, lekin jadval nomlari " "o‘zgarishsiz qoladi" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "Jadval nomi o‘rniga uning sharhini ko‘rsatish" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "Jadval sharhlarini ko‘rsatgich kontekst oynasida ko‘rsatish" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Ishlatilayotgan jadvallarni belgilash va qulflangan jadvallari mavjud " "bo‘lgan ma`lumotlar bazalarini ko‘rishga imkon berish" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "Qulflangan jadvallarni tashlab ketishlik" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "Parol" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "Foydalanuvchi" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4339,65 +4359,65 @@ msgstr "" "\"Baza tuzish\" formasida ma`lumotlar bazasi nomini taklif eting yoki matn " "maydonini bo‘sh qoldiring" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "Yangi baza nomini taklif etish" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR maydonidagi qatorlar soni" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Jadval yorlig‘i" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4409,40 +4429,40 @@ 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:487 +#: libraries/config/messages.inc.php:486 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:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "Serverda import fayllari saqlanadigan direktoriya" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "Import direktoriyasi" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" "Ma`lumotlar bazasi ichidagi ma`lumotlarni to‘laligicha qidirishga ruxsat " "berish" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "Bazani qidirishdan foydalanish" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4452,15 +4472,15 @@ msgstr "" "necha so‘rovnio‘z ichiga olishi mumkinligi \"libraries/import.lib.php\" " "faylida belgilangan." -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "Kengaytirilgan ibora" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "Oxirgi versiyani tekshirish" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4468,7 +4488,7 @@ msgstr "" "Import va eksport operatsiyalari uchun [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] qisishni yoqish" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4497,74 +4517,74 @@ msgid "Signon authentication" msgstr "Autentifikatsiya tartibi" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "\"LOAD DATA\" ishlatilgan CSV" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS ish kitobi" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX ish kitobi" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document jadvali" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Rangni tanlash" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Ma`lumotlar bazasi eksport parametrlari" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "Ma`lumotlar" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel uchun CSV" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenDocument matn" @@ -4613,7 +4633,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "Hodisalar" @@ -4642,8 +4662,8 @@ msgid "Designer" msgstr "Dizayner" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "Privilegiyalar" @@ -4655,7 +4675,7 @@ msgstr "Muolajalar" msgid "Return type" msgstr "Qaytariladigan tip" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4688,18 +4708,18 @@ msgid "Details..." msgstr "Tafsilotlar..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "Parolni o‘zgartirish" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "Parol yo‘q" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "Tasdiqlash" @@ -4722,8 +4742,8 @@ msgstr "Yangi ma`lumotlar bazasi tuzish" msgid "Create" msgstr "Tuzish" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "Privilegiyalar yo‘q" @@ -4871,8 +4891,8 @@ msgid "Compression:" msgstr "Siqish" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "Yo‘q" @@ -5055,7 +5075,7 @@ msgstr "Indeks bo‘yicha sortirovka qilish" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -5090,8 +5110,8 @@ msgstr "Ikkilik ma`lumotlarni ko‘rsatish" msgid "Show BLOB contents" msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "Yashirish" @@ -5109,49 +5129,49 @@ msgstr "Belgilangan so‘rovni bajarish" msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Tugatish" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "so‘rov bo‘yicha" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "jami" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "O‘zgartirish" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "Chop etish versiyasi (to‘la)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-sxemani ko‘rsatish" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "Aloqa topilmadi" @@ -5634,12 +5654,12 @@ msgid "Data dump options" msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "Jadval ma`lumotlarini damp qilish" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "Jadval tuzilishi" @@ -5692,9 +5712,9 @@ msgstr "Mavjud MIME turlari" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "Xost" @@ -5841,40 +5861,40 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "Muolajalar" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "Funksiyalar" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "Jadvallarning tashqi kalitida cheklovlar" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "JADVAL UCHUN MIME TURLARI" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "Jadval aloqalari" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "Triggerlar" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "Namoyish etish uchun tuzilma" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "Namoyish etish uchun tuzilma" @@ -5909,44 +5929,44 @@ msgstr "SQL so‘rovi natijasi" msgid "Generated by" msgstr "Tuzilgan" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi " "amallarni bajarishingiz mumkin:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "Ushbu bazaga o‘tish" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "tanlovlar" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "Ushbu jadvalga o‘tish" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "Ushbu ko‘rinishga o‘tish" @@ -6001,7 +6021,7 @@ msgstr "" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "Jadval nomi" @@ -6089,7 +6109,7 @@ msgid "Charset" msgstr "Kodirovka" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "Ikkilik" @@ -6385,8 +6405,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "Foydalanuvchi nomi" @@ -6405,7 +6425,7 @@ msgid "Variable" msgstr "O‘zgaruvchi" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "Qiymati" @@ -6426,34 +6446,34 @@ msgstr "" msgid "Add slave replication user" msgstr "Tobе rеplikatsiya foydalanuvchisini qo‘shish" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "Har qaysi foydalanuvchi" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "Matnmaydonini ishlatish" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "Har qaysi xost" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "Ushbu xost" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "Xostlar jadvalidan foydalanish" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6709,11 +6729,11 @@ msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish" msgid "Columns" msgstr "Maydon nomlari" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" @@ -6745,7 +6765,7 @@ msgstr "Faqat ko‘rish" msgid "Location of the text file" msgstr "Faylni tanlash" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Yuklash katalogidan" @@ -6914,22 +6934,22 @@ msgstr "" "Hozirgi vatqda tavsif mavjud emas.
Ishlatilayotgan \"%s\" o‘girishlar " "namoyishi funksiyalarining ishi yaqin orada tavsiflanadi. " -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "Jadval turi" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "Bo‘laklarni (PARTITIONS) belgilash" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Ustun(lar) qo‘shish" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -7189,8 +7209,8 @@ msgstr "tanlovlar" msgid "Protocol version" msgstr "Protokol versiyasi" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "Foydalanuvchi" @@ -7227,7 +7247,7 @@ msgstr " phpMyAdmin rasmiy veb-sahifasi" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -7240,7 +7260,7 @@ msgstr "" "shuning uchun \"root\" superfoydalanuvchisiga parol o‘rnatish qat`iyan " "tavsiya etiladi." -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -7250,7 +7270,7 @@ msgstr "" "func_overload parametri yoqilgan. Ma`lumot yo‘qolishi oldini olish uchun, " "ushbu parametr o‘chirilishi kerak!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -7261,7 +7281,7 @@ msgstr "" "navbatida ma`lumot yo‘qolishiga olib kelishi mumkin. PHP \"mbstring\" " "kengaytmasini o‘rnatish qat`iy tavsiya etiladi." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -7274,13 +7294,13 @@ msgstr "" "davomiyligidan kichikroq, shuning uchun login sessiyangiz phpMyAdmin " "dasturida konfiguratsiya qilganingizdan tezroq tugaydi." -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "cookie-autentifikatsiya ishlatilganda, konfiguratsion fayldagi $cfg" "[\"blowfish_secret\"] direktivasi qiymatini o‘rnatib parol belgilash kerak." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -7290,7 +7310,7 @@ msgstr "" "katalogi haliyam mavjud. phpMyAdmin muvaffaqiyatli o‘rnatilgandan keyin, uni " "o‘chirish tavsiya etiladi." -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " @@ -7299,7 +7319,7 @@ msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -7309,7 +7329,7 @@ msgstr "" "dasturining ba’zi funktsiyalari ishlamaydi. Masalan, navigatsiya oynasi " "avtomatik tarzda yangilanib turmaydi." -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -7318,7 +7338,7 @@ msgstr "" "MySQL-kliyent versiyasi (\"%s\") o‘rnatilgan MySQL-server versiyasi(\"%s\")" "dan farq qilmoqda. Bu holat noxush oqibatlarga olib kelishi mumkin." -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7669,117 +7689,117 @@ msgstr "Jadval turlari" msgid "View dump (schema) of databases" msgstr "Ma`lumotlar bazalari dampini (sxemasini) namoyish etish" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "Yangi jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "Jadvallarni o‘chirishga rux`sat beradi" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Foydalanuvchilarni qo‘shish va privilegiyalar jadvalini qayta yuklamasdan " "privilegiyalar qo‘shishga ruxsat beradi" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Foydalanuvchi bir soat davomida o‘rnatishi mumkin bo‘lgan yangi ulanishlar " "soni" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Foydalanuvchi bir soat davomida yuborishi mumkin bo‘lgan so‘rovlar soni" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -7787,65 +7807,65 @@ msgstr "" "Foydalanuvchi bir soat davomida bajarishi mumkin bo‘lgan biron-bir jadval " "yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Bir foydalanuvchi tomonidan bir vaqtning o‘zida o‘rnatishi mumkin bo‘lgan " "ulanishlar soni" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat " "beradi" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga " "ruxsat beradi" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "" "Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "Server ishini yakunlashga ruxsat beradi" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7856,164 +7876,164 @@ msgstr "" "global o‘zgaruvchilar o‘rnatish yoki boshqa foydalanuvchi jarayonini " "o‘chirish)" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "" "Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan " "jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "Privilegiyalar yo‘q" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Yo‘q" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi." -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "Global privilegiyalar" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "Administratsiya" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "Resurslardan foydalanishni cheklash" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "IZOH: parametr qiymatlarini 0 (nol) deb belgilash mavjud cheklashlarni bekor " "qiladi." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "Foydalanuvchi hisobi haqida ma`lumot" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "Parolni o‘zgartirmaslik" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Bironta ham foydalanuvchi topilmadi." -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr " \"%s\" nomli foydalanuvchi mavjud!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr " \"%s\" uchun privilegiyalar o‘zgartirildi." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr " \"%s\" foydalanuvchining privilegiyalari bekor qilindi." -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "\"%s\" o‘chirilmoqda" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "Privilegiyalar qayta yuklanmoqda" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "Privilegiyalarni tahrirlash" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "Bekor qilish" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "Har qaysi" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "Yangi foydalanuvchi qo‘shish" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " "ularni o‘chirish." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "" "Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8026,50 +8046,50 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "Maydon privilegiyalari" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Ma`lumotlar bazalari nomlarida pastki chiziq (_) va foiz (%) belgilari " "ishlatilganda ular oldiga teskari egri chiziq (\\) qo‘yish kerak." -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr " va eskisini saqlash." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -8077,48 +8097,48 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Yo‘q" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" "Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " "privilegiyalarni berish." -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " "bazalariga to‘liq privilegiyalarni berish." -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "Global" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "Guruhlash belgisi" @@ -9183,7 +9203,7 @@ msgstr "Manbaga ulanib bo‘lmadi" msgid "Could not connect to the target" msgstr "Nishonga ulanib bo‘lmadi" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -9707,12 +9727,12 @@ msgstr "SQL-so‘rovni ko‘rsatish" msgid "Validated SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr " `\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "Xatcho‘p belgisi" @@ -9721,73 +9741,73 @@ msgstr "Xatcho‘p belgisi" msgid "Table %1$s has been altered successfully" msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi" -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "Tashqi qiymatlarni ko‘rib chiqish" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "Funksiya" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr "Ma`lumotlar ko‘pligi sabali
o‘zgartirish qiyishlashishi mumkin" -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "BLOB ombori murojaatlarini o‘chirish" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "BLOB omboriga yuklash" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "va so‘ng" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -9900,12 +9920,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "\"%s\" nomli jadval mavjud!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "%1$s jadvali tuzildi." @@ -10406,11 +10426,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "Tavsifi" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ushbu sahifaga kirish uchun Sizda yetarli huquq mavjud emas!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "Profil yangilandi." diff --git a/po/zh_CN.po b/po/zh_CN.po index bff89c0ca7..fdc202dd89 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" -"PO-Revision-Date: 2010-09-16 11:55+0200\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" +"PO-Revision-Date: 2010-09-23 06:10+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "全部显示" @@ -37,17 +37,20 @@ msgstr "" "无法更新目标浏览窗口。可能你已经关闭了父窗口或您浏览器的安全设置阻止了跨窗口" "更新。" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "搜索" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -62,14 +65,14 @@ msgstr "搜索" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -121,7 +124,7 @@ msgid "Database comment: " msgstr "数据库注释:" #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "表注释" @@ -132,7 +135,7 @@ msgstr "表注释" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 msgid "Column" @@ -145,8 +148,8 @@ msgstr "字段" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -158,13 +161,13 @@ msgstr "类型" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "空" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -183,8 +186,8 @@ msgid "Links to" msgstr "链接到" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -200,10 +203,10 @@ msgstr "注释" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr "否" @@ -219,10 +222,10 @@ msgstr "否" #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -249,7 +252,7 @@ msgstr "全选" msgid "Unselect All" msgstr "全不选" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "数据库名不能为空!" @@ -263,99 +266,99 @@ msgstr "已将数据库 %s 改名为 %s" msgid "Database %s has been copied to %s" msgstr "已将数据库 %s 复制为 %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "将数据库改名为" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "命令" -#: db_operations.php:397 +#: db_operations.php:400 msgid "Remove database" msgstr "删除数据库" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "已被删除数据库 %s 。" -#: db_operations.php:414 +#: db_operations.php:417 msgid "Drop the database (DROP)" msgstr "删除数据库 (DROP)" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "复制数据库到" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "仅结构" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "结构和数据" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "仅数据" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "复制前创建数据库 (CREATE DATABASE)" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "添加 %s" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "添加自增 (AUTO_INCREMENT) 值" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "强制添加" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "切换到复制的数据库" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "整理" -#: db_operations.php:516 +#: db_operations.php:519 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "phpMyAdmin 高级功能尚未激活。要查出原因,请点击%s此处%s。" -#: db_operations.php:549 +#: db_operations.php:552 msgid "Edit or export relational schema" msgstr "编辑或导出关系大纲" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "表" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -366,40 +369,40 @@ msgstr "行数" msgid "Size" msgstr "大小" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "使用中" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "创建时间" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "最后更新" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "最后检查" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s 张表" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -429,7 +432,7 @@ msgid "Descending" msgstr "递减" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "显示" @@ -450,8 +453,8 @@ msgid "Del" msgstr "删除" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "或" @@ -518,17 +521,19 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "在表 %2$s 中找到 %1$s 个匹配" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "浏览" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -569,156 +574,141 @@ msgstr "于以下表:" msgid "Inside column:" msgstr "包含字段:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "插入" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "结构" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "删除" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "清空" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "已清空表 %s " -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "已删除视图 %s" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "已删除表 %s " -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "追踪已启用。" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "追踪已禁用。" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "该视图最少包含的行数,参见%s文档%s。" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "视图" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "复制" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "总计" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 服务器的默认存储引擎。" -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "选中项:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "全选" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "全不选" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "仅选择多余" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "导出" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "打印预览" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "清空" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "删除" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "检查表" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "优化表" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "修复表" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "分析表" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "数据字典" @@ -726,13 +716,13 @@ msgstr "数据字典" msgid "Tracked tables" msgstr "已追踪的表" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -758,8 +748,8 @@ msgstr "状态" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "操作" @@ -802,12 +792,12 @@ msgstr "追踪表" msgid "Database Log" msgstr "数据库日志" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "字段“%s”的值" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "请将每个值分别输入在不同的输入框中。" @@ -879,7 +869,7 @@ msgstr "书签已删除。" msgid "Showing bookmark" msgstr "显示书签" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "已创建书签 %s" @@ -904,7 +894,7 @@ msgstr "" "将无法完成导入操作。" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "返回" @@ -980,11 +970,11 @@ msgstr "主机名不能为空!" msgid "The user name is empty!" msgstr "用户名不能为空!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "密码不能为空!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "两次密码不一致!" @@ -1065,100 +1055,108 @@ msgid "Searching" msgstr "正在搜索" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "显示/隐藏查询输入框" +#, fuzzy +#| msgid "SQL Query box" +msgid "Hide query box" +msgstr "SQL 查询框" #: js/messages.php:85 +#, fuzzy +#| msgid "SQL Query box" +msgid "Show query box" +msgstr "SQL 查询框" + +#: js/messages.php:86 msgid "Inline Edit" msgstr "快速编辑" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "忽略" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "已保存修改。" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 msgid "Relation deleted" msgstr "已删除关系" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "已添加外键关联" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 msgid "Internal relation added" msgstr "已添加内联关系" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "错误:关系未添加" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "错误:关系已存在" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "保存设计器坐标时出错。" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "基本功能" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "已禁用" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "选择外键" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "选择外键" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "请选择主键或唯一键" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 msgid "Choose column to display" msgstr "选择要显示的字段" -#: js/messages.php:105 +#: js/messages.php:106 msgid "Generate password" msgstr "生成密码" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "生成" -#: js/messages.php:107 +#: js/messages.php:108 msgid "Change Password" msgstr "修改密码" -#: js/messages.php:110 +#: js/messages.php:111 msgid "More" msgstr "更多" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 msgid "Done" msgstr "完成" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 msgid "Prev" msgstr "上个月" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1166,231 +1164,231 @@ msgid "Next" msgstr "下个月" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 msgid "Today" msgstr "今天" -#: js/messages.php:129 +#: js/messages.php:130 msgid "January" msgstr "一月" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "二月" -#: js/messages.php:131 +#: js/messages.php:132 msgid "March" msgstr "三月" -#: js/messages.php:132 +#: js/messages.php:133 msgid "April" msgstr "四月" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "五月" -#: js/messages.php:134 +#: js/messages.php:135 msgid "June" msgstr "六月" -#: js/messages.php:135 +#: js/messages.php:136 msgid "July" msgstr "七月" -#: js/messages.php:136 +#: js/messages.php:137 msgid "August" msgstr "八月" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "九月" -#: js/messages.php:138 +#: js/messages.php:139 msgid "October" msgstr "十月" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "十一月" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "十二月" -#: js/messages.php:169 +#: js/messages.php:170 msgid "Sunday" msgstr "星期日" -#: js/messages.php:170 +#: js/messages.php:171 msgid "Monday" msgstr "星期一" -#: js/messages.php:171 +#: js/messages.php:172 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "星期四" -#: js/messages.php:174 +#: js/messages.php:175 msgid "Friday" msgstr "星期五" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "周六" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "周" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "时" -#: js/messages.php:212 +#: js/messages.php:213 msgid "Minute" msgstr "分" -#: js/messages.php:213 +#: js/messages.php:214 msgid "Second" msgstr "秒" @@ -1464,9 +1462,9 @@ msgid "Comment" msgstr "注释" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "编辑" @@ -1487,15 +1485,15 @@ msgid "" "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "数据库" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "错误" @@ -1731,6 +1729,32 @@ msgstr "下载文件" msgid "Could not open file: %s" msgstr "无法打开文件:%s" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "插入" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "结构" + #: libraries/chart.lib.php:40 msgid "Query statistics" msgstr "查询统计" @@ -1790,7 +1814,7 @@ msgstr "无效的服务器索引: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "无效的主机名 %1$s,请检查配置文件。" -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "服务器" @@ -1844,7 +1868,7 @@ msgstr "MySQL 返回:" msgid "Failed to connect to SQL validator!" msgstr "连接到 SQL 校验器失败!" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "解释 SQL" @@ -1856,11 +1880,11 @@ msgstr "略过解释 SQL" msgid "Without PHP Code" msgstr "无 PHP 代码" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "创建 PHP 代码" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "刷新" @@ -1869,7 +1893,7 @@ msgstr "刷新" msgid "Skip Validate SQL" msgstr "略过校验 SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "校验 SQL" @@ -1967,7 +1991,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -1990,14 +2014,14 @@ msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 msgid "structure" msgstr "结构" @@ -2117,7 +2141,7 @@ msgid "Set value: %s" msgstr "设置值: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "还原默认值" @@ -2127,15 +2151,15 @@ msgstr "允许用户自定义该值" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "保存" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "重置" @@ -2264,18 +2288,14 @@ msgid "Confirm DROP queries" msgstr "确认删除 (DROP) 查询" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "使用 Ctrl + 方向键 进行字段浏览" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "调试 SQL" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 msgid "Default display direction" msgstr "默认显示模式" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" @@ -2283,114 +2303,114 @@ msgstr "" "[kbd]horizontal (水平)[/kbd]、[kbd]vertical (垂直)[/kbd] 或限定使用垂直模式的" "最大数值" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "修改/新建字段时的显示模式" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "在进入数据库标签时默认显示的页面" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "默认数据库标签" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "在进入服务器标签时默认显示的页面" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "默认服务器标签" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "在进入数据表标签时默认显示的页面" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "默认数据表标签" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "默认以十六进制显示二进制内容" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "以十六进制显示二进制内容" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "直接显示数据库列表而不使用下拉框" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "显示数据库为列表" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "直接显示服务器列表而不使用下拉框" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "显示服务器为列表" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "在新窗口中编辑 SQL 查询" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 msgid "Edit in window" msgstr "在窗口中编辑" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 msgid "Display errors" msgstr "显示错误" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "收集错误" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "在警告、错误和信息上显示图标" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "错误图标" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 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:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "最长执行时间" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "另存为文件" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 msgid "Character set of the file" msgstr "文件字符集" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "格式" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "压缩" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2398,169 +2418,169 @@ msgstr "压缩" msgid "Put columns names in the first row" msgstr "首行保存字段名" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 msgid "Columns enclosed by" msgstr "内容分隔符" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 msgid "Columns escaped by" msgstr "内容转义符" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "将 NULL 替换为" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "删除字段中的回车换行符" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 msgid "Columns terminated by" msgstr "字段分隔符" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "换行符" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 msgid "Excel edition" msgstr "Excel 版本" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 msgid "Database name template" msgstr "数据库名模板" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 msgid "Server name template" msgstr "服务器名模板" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 msgid "Table name template" msgstr "数据表名模板" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 msgid "Dump table" msgstr "转储数据表" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "包含表的标题" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "表的标题" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "延续的表的标题" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "关键标签" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME 类型" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "关系" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 msgid "Export method" msgstr "导出方式" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "保存在服务器上" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "覆盖已有文件" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 msgid "Remember file name template" msgstr "记住文件名模板" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 msgid "Enclose table and column names with backquotes" msgstr "给数据表名及字段名加上反引号" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL 兼容模式" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "在插入数据时使用的语法" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "创建/更新/检查日期" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "使用延迟插入" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "禁止选定不相关的主键" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "为 BLOB 字段使用16进制 (HEX)" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "使用忽略插入" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "创建查询的最大长度" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 msgid "Export type" msgstr "导出类型" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "处理事务中封装输出" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 msgid "Export time in UTC" msgstr "以协调世界时 (UTC) 导出时间" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "强制使用安全连接访问 phpMyAdmin" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "强制 SSL 连接" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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" @@ -2568,160 +2588,160 @@ msgstr "" "外键下拉框中选项的排序顺序,[kbd]content[/kbd] 为关联内容,[kbd]id[/kbd] 为键" "值" -#: libraries/config/messages.inc.php:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "外键下拉框顺序" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "下拉框中选项个数的限制" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "外键限制" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "浏览模式" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "自定义浏览模式" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 msgid "Customize default options" msgstr "自定义默认选项" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "开发" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "phpMyAdmin 开发设置" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "编辑模式" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "自定义编辑模式" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "导出选项" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "自定义导出选项的默认值" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "功能" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 msgid "General" msgstr "常规" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "设置某些常用选项" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "导入" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 msgid "Import defaults" msgstr "导入选项" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "自定义导入选项的默认值" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "导入 / 导出" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "设置导入和导出文件夹以及压缩选项" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 msgid "Databases display options" msgstr "数据库显示选项" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "导航框架" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "自定义导航框架" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 msgid "Servers" msgstr "服务器" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "服务器显示选项" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "数据表" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "数据表显示选项" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "主框架" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 msgid "Microsoft Office" msgstr "微软 Office" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 msgid "Open Document" msgstr "开放文档" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "其他核心设置" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "其他设置" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 msgid "Page titles" msgstr "页面标题" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -2730,58 +2750,58 @@ msgstr "" "设置浏览器标题栏所显示的文字。参见[a@Documentation.html#cfg_TitleTable]文档[/" "a]中关于可以取得特殊值的魔术字符串。" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "查询窗口" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "自定义查询窗口选项" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "安全" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 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:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "基本设置" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 msgid "Authentication" msgstr "认证" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 msgid "Authentication settings" msgstr "认证设置" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "服务器设置" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "高级服务器设置,如果你不知道这些是什么,请不要修改" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "服务器连接参数" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "高级功能" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -2790,52 +2810,52 @@ msgstr "" "配置 phpMyAdmin 高级功能,参见文档[a@Documentation.html#linked-tables]" "phpMyAdmin 高级功能[/a]" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "修改追踪" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "追踪数据库的修改。需要设置 PMA 数据库。" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 msgid "Customize export options" msgstr "自定义导出选项" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "自定义导入选项" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "自定义导航框架" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "自定义主框架" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL 查询" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 msgid "SQL Query box" msgstr "SQL 查询框" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "自定义显示在 SQL 查询框中的链接" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 msgid "SQL queries settings" msgstr "SQL 查询设置" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 msgid "SQL Validator" msgstr "SQL 校验器" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -2846,43 +2866,43 @@ msgstr "" "[/strong]。[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL 校验器[/a],版" "权所有 2002 Upright Database Technology. 保留所有权利。[/em]" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 msgid "Startup" msgstr "起始页" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "自定义起始页" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 msgid "Tabs" msgstr "标签" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "选择你想让标签怎样工作" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 msgid "Text fields" msgstr "文本字段" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 msgid "Customize text input fields" msgstr "自定义文本输入框" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "Texy! 文本" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "警告" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "禁止部分 phpMyAdmin 发出的警告" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -2890,15 +2910,15 @@ msgstr "" "允许在导入和导出时使用 [a@http://en.wikipedia.org/wiki/Gzip]gzip (外链,英文)" "[/a] 压缩" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "iconv 的额外参数" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -2906,11 +2926,11 @@ msgstr "" "如果打开此选项,在执行多语句查询的时候,即使有一条或多条语句发生错误," "phpMyAdmin 也会继续执行其他的语句" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "忽略多个语句错误" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -2919,182 +2939,182 @@ msgstr "" "该功能作用于在导入时脚本检测到可能需要花费很长时间。尽管这会中断事务,但在导" "入大文件时是个很好的方法。" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "部分导入:允许中断" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "忽略重复行" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "将表的数据用此文件替换" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" "默认格式,此列表根据位置(数据库或数据表)不同将有所改变,只有 SQL 总是可用的" -#: libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "导入文件的格式" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "使用本地 (LOCAL) 关键词" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 msgid "Column names in first row" msgstr "忽略首行 (首行为字段名)" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "不导入空行" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "导入货币 ($5.00 将被导入为 5.00)" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "导入百分数为小数 (12.00% 将被导入为 .12)" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 msgid "Number of queries to skip from start" msgstr "跳过查询的数量" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "部分导入:跳过查询" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要给零值使用自增 (AUTO_INCREMENT)" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "滑块初始状态" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "一次可以插入的行数" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "插入的行数" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "快速访问图标的目标" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "在左侧框架中显示 logo" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "显示 logo" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "在左侧框架顶部显示服务器选择" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "显示服务器选择" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 msgid "Display table filter" msgstr "显示数据表快速搜索框" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "将数据库分为不同树的分隔字符串" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "树状数据库分隔符" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "只使用轻量级版本,以树形显示数据库 (以下面的树形分隔符来显示)" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "以树形显示数据库" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "如果想一次性浏览所有数据库,则禁用该选项" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 msgid "Use light version" msgstr "使用轻量级版本" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "数据表树最大深度" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "将表分为不同树的分隔符" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "树形表分隔符" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "导航框架中 logo 的地址" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "Logo 链接地址" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "Logo 链接目标" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "高亮显示鼠标所在位置的服务器" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "启用高亮" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "不在标签上使用背景" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "简化标签" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "浏览非数字字段时所显示的最大字符数" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "限制字段字符数" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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 " @@ -3103,21 +3123,21 @@ msgstr "" "如果设为 TRUE,在退出时将会删除所有服务器的 Cookies。如果设为 FALSE,在您登录" "多台服务器的时候,容易忘记退出登录。" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "退出时删除所有 cookies" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "定义在 cookie 认证方式中是否显示上次登录的用户名" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "显示上次登录的用户名" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3128,52 +3148,52 @@ msgstr "" "为浏览器进程,在关闭浏览器之后 Cookies 就会被删除。默认值为0。在不安全的环境" "下建议使用默认值。" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "登录 cookie 存储" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "定义登录 cookie 的有效期 (单位:秒)" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "登录 cookie 有效期" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "放大一倍 LONGTEXT 字段的输入框" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "放大 LONGTEXT 字段的输入框" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "在主页上使用图标" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "显示 SQL 语句时可以使用的最多字符数" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "显示 SQL 语句的最大长度" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "用户不能设置更大的值" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "在左栏和数据库列表中最多显示的数据库个数" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "最大数据库数量" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -3182,71 +3202,71 @@ msgstr "" "浏览一个结果集时一次显示的最多行数。如果结果集超过此值,将会显示 "上一页" "" 和 "下一页" 的链接。" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "显示的最多行数" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "在数据表列表中最多显示的数据表个数" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "最大数据表数量" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "禁止显示在使用 cookie 认证时缺少 mcrypt 的默认警告" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "mcrypt 警告" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "一个脚本可分配到的内存大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]为不限制)" -#: libraries/config/messages.inc.php:312 +#: libraries/config/messages.inc.php:311 msgid "Memory limit" msgstr "内存限制" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "显示左侧删除链接" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "显示右侧删除链接" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "为数据库和数据表名使用自然排序" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 msgid "Natural order" msgstr "自然排序" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "仅使用图标、文本或都使用" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "导航条显示" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "使用 GZip 输出缓冲以加快 HTTP 传输速度" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "GZip 输出缓冲" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3254,42 +3274,42 @@ msgstr "" "[kbd]SMART[/kbd] - 如:对 TIME、DATE、DATETIME 和 TIMESTAMP 类型的字段递减排" "序,其他字段递增" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "默认排序" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "在连接到 MySQL 数据库时使用持久连接" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "持久连接" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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 "禁止在缺少 phpMyAdmin 高级功能所需数据表时在数据库结构页中显示默认警告" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "数据表操作显示" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "禁止编辑 BLOB 和 BINARY 类型字段" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "保护二进制字段" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3298,107 +3318,107 @@ msgstr "" "允许使用基于数据库的查询历史 (需要 phpMyAdmin 高级功能)。如果禁用,将使用 " "JS 程序来显示查询历史 (关闭窗口即丢失)。" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "持久查询历史" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "记录查询历史的数量" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "查询历史个数" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "打开一个新查询窗口时默认显示的页面" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "默认查询窗口标签" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "查询窗口高度 (单位:像素)" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "Query window height" msgstr "查询窗口高度" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query window width (in pixels)" msgstr "查询窗口宽度 (单位:像素)" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Query window width" msgstr "查询窗口宽度" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "选择进行字符集转换时使用的函数" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "记录引擎" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "每 X 单元格重复表头,要禁止此功能请设为 [kbd]0[/kbd]" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Repeat headers" msgstr "重复表头" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "显示帮助按钮代替文档文本" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "显示帮助按钮" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "服务器上用来保存导出文件的文件夹" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Save directory" msgstr "保存文件夹" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "不使用请留空" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "主机认证模式" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "默认请留空" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "主机认证规则" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "允许空密码登录" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "允许 root 用户登录" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "使用 HTTP 基本认证时显示给用户的提示信息" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "HTTP 提示信息" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3407,19 +3427,19 @@ msgstr "" "[a@http://swekey.com]SweKey 硬件认证 (外链,英文)[/a]的配置文件路径 (请勿置于" "你的文档根文件夹,推荐使用:/etc/swekey.conf)" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "SweKey 配置文件" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "要使用的认证方式" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "认证方式" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3427,41 +3447,41 @@ msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]书签 (外链,英文)[/a]功能请" "留空,默认:[kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "书签表" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 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:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "列信息表" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "压缩连接到 MySQL 服务器" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "压缩连接" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "怎样连接到服务器,如果不确定,请选择 tcp" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "Connection type" msgstr "连接方式" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "控制用户的密码" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3469,29 +3489,29 @@ msgstr "" "一个特殊的被限制权限的 MySQL 用户,参见 [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki (外链,英文)[/a]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "控制用户" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "显示数据库列表时计算数据表的数量" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Count tables" msgstr "统计数据表" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "不使用设计功能请留空,默认:[kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Designer table" msgstr "设计表" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" @@ -3500,57 +3520,57 @@ msgstr "" "统 (外链,英文)[/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外" "链,英文)[/a]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "禁止使用 INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "要使用的 PHP 扩展,如果支持,推荐使用 mysqli。" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "要使用的 PHP 扩展" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "该正则表达式 (PCRE,Perl 兼容) 所匹配的数据库将被隐藏" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "Hide databases" msgstr "隐藏数据库" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 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:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "SQL 查询历史表" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "MySQL 服务器的主机名" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "Server hostname" msgstr "服务器主机名" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "退出地址" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "尝试用空密码连接" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "用空密码连接" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3562,28 +3582,28 @@ msgstr "" "\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。通过该选项你可以对数据库列表排序,只" "需按顺序输入它们的名称并加上 [kbd]*[/kbd],剩下的数据库将按字母顺序排在最后。" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "仅显示列出的数据库" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "如果不使用 config 认证方式,请留空" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "config 认证方式的密码" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 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:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "PDF 大纲: 数据表页" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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 " @@ -3592,19 +3612,19 @@ msgstr "" "关系、书签、PDF 功能所用的数据库。参见 [a@http://wiki.phpmyadmin.net/pma/" "pmadb]pmadb (外链,英文)[/a]。不使用请留空。默认: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "Database name" msgstr "数据库名" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "MySQL 服务器监听的端口,留空为默认" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 msgid "Server port" msgstr "服务器端口" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3612,19 +3632,19 @@ msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/relation]关系链接 (外链,英文)[/a]功" "能请留空,默认:[kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "Relation table" msgstr "关系表" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "取得所有可用数据库的 SQL 语句" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "显示数据库(SHOW DATABASES)命令" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3632,150 +3652,150 @@ msgstr "" "参见[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]认证方式 (外链,英文)" "[/a]中的例子" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "Signon 会话名" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "登录地址" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL 服务器监听的套接字,留空为默认" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Server socket" msgstr "服务器套接字 (socket)" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "使用 SSL 连接到 MySQL 服务器" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "使用 SSL" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 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:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "PDF 大纲: 数据表并发" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 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:415 +#: libraries/config/messages.inc.php:414 msgid "Display columns table" msgstr "显示字段表" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "添加 DROP DATABASE" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "添加 DROP TABLE" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "添加 DROP VIEW" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "定义自动创建新版的命令列表。" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "Statements to track" msgstr "要追踪的命令" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 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:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "SQL 查询追踪表" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "设置追踪系统是否自动为数据表和视图创建版本。" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "Automatically create versions" msgstr "自动创建版本" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "不在数据库中保存用户偏好请留空,默认:[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "用户偏好表" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "config 认证方式的用户名" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "如果你确定 pma_* 数据表都是最新的,可以禁用此项。此功能提供兼容性检查" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "详细检查" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "一个好记的名字。留空将显示主机名。" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "服务器名称" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "设置是否给用户显示一个 "显示所有 (记录)" 的按钮" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "允许显示所有行" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -3784,33 +3804,33 @@ msgstr "" "注意:该选项不影响 [kbd]config[/kbd] 认证方式,因为密码是保存在配置文件中,该" "选项也不限制直接执行可实现相同功能的命令。" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "显示修改密码" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "显示创建数据库表单" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "定义在编辑/插入模式中是否显示字段类型一列" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "Show field types" msgstr "显示字段类型" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "在编辑/插入模式中显示函数列" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "显示函数列" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -3818,42 +3838,42 @@ msgstr "" "显示 [a@http://php.net/manual/function.phpinfo.php]phpinfo() (外链,英文)[/" "a] 输出的链接" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "显示 phpinfo() 链接" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "显示 MySQL 服务器详细信息" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "定义是否显示 phpMyAdmin 生成的 SQL 查询" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "Show SQL queries" msgstr "显示 SQL 查询" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "允许显示数据库和数据表的统计信息 (如:空间使用)" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show statistics" msgstr "显示统计" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" "如果启用了悬停提示且设置了数据库备注,这里将简略显示数据库备注和数据库名" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "显示数据库的备注而不显示数据库名" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -3864,78 +3884,78 @@ msgstr "" "['LeftFrameTableSeparator'] 作分割/层叠用,所有只有目录的名字像别名,数据表自" "己的名字并不改变" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "显示表备注而不显示表名" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "悬停时显示表备注" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "将已锁定的数据表在数据库中显示为使用中" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Skip locked tables" msgstr "跳过锁定的表" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "需要启用 SQL 校验器" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "密码" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "[strong]警告:[/strong]需要安装 PHP SOAP 扩展或 PEAR SOAP" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "启用 SQL 校验器" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" "如果你有自己的用户名,请在这里输入 (默认为 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 msgid "Username" msgstr "用户名" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "如果可能,在 "新建数据库" 表单中建议一个名字,或留空" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "建议新数据库名" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "若检测到 Suhosin 将在主页显示一个警告" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "Suhosin 警告" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -3943,11 +3963,11 @@ msgstr "" "编辑模式的文本框大小 (列数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 " "(*1.25)" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:474 msgid "Textarea columns" msgstr "文本框列" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -3955,31 +3975,31 @@ msgstr "" "编辑模式的文本框大小 (行数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 " "(*1.25)" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "文本框行" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "选中一个数据库时浏览器窗口的标题" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "未选择时浏览器窗口的标题" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "Default title" msgstr "默认标题" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "选中一个服务器时浏览器窗口的标题" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "选中一张数据表时浏览器窗口的标题" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -3990,37 +4010,37 @@ 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:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "可信代理IP列表" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "服务器上用来存放导入文件的文件夹" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "上传文件夹" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "允许搜索整个数据库" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "使用数据库搜索" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "禁用时,用户不能设置下列选项,右侧的复选框被忽略" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "启用设置中的开发标签" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4029,15 +4049,15 @@ msgstr "" "在进行多个语句查询时,显示每个语句所影响的行数。默认一次查询可以包含的查询语" "句数可以在 libraries/import.lib.php 中找到。" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "为多个语句输出更多信息" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "检查更新" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4045,7 +4065,7 @@ msgstr "" "允许在导入和导出时使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP " "(外链,英文)[/a] 压缩" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "ZIP" @@ -4066,72 +4086,72 @@ msgid "Signon authentication" msgstr "Signon 认证" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS 工作簿" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX 工作簿" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "OpenOffice 表格" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "快速" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "自定义" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "数据库导出选项" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "数据" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenOffice 文档" @@ -4170,7 +4190,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "缺少 %s 扩展。请检查 PHP 配置。" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "事件" @@ -4199,8 +4219,8 @@ msgid "Designer" msgstr "设计器" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "权限" @@ -4212,7 +4232,7 @@ msgstr "常规" msgid "Return type" msgstr "返回类型" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4242,18 +4262,18 @@ msgid "Details..." msgstr "详细..." #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "修改密码" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "无密码" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "重新输入" @@ -4274,8 +4294,8 @@ msgstr "新建数据库" msgid "Create" msgstr "创建" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "无权限" @@ -4391,8 +4411,8 @@ msgid "Compression:" msgstr "压缩:" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "无" @@ -4540,7 +4560,7 @@ msgstr "主键排序" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4573,8 +4593,8 @@ msgstr "显示二进制内容" msgid "Show BLOB contents" msgstr "显示 BLOB 内容" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "隐藏" @@ -4592,47 +4612,47 @@ msgstr "执行书签中的查询" msgid "The row has been deleted" msgstr "已删除该行" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "杀死" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "查询中" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "显示行" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "总计" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "修改" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "查询结果选项" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "打印预览 (全文显示)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 msgid "Display chart" msgstr "显示图表" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "找不到链接" @@ -5067,12 +5087,12 @@ msgid "Data dump options" msgstr "数据转储选项" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "转存表中的数据" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "表的结构" @@ -5115,9 +5135,9 @@ msgstr "显示 MIME 类型" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "主机" @@ -5267,40 +5287,40 @@ msgstr "" "转储 TIMESTAMP 字段时用 UTC 时区 (允许在不同时区的服务器间转储和重新载入 " "TIMESTAMP 字段)" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 msgid "Procedures" msgstr "存储过程" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 msgid "Functions" msgstr "函数" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "限制导出的表" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "限制表" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME 类型表" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "表的关联" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "触发器" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 msgid "Structure for view" msgstr "视图结构" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "替换视图以便查看" @@ -5333,42 +5353,42 @@ msgstr "SQL 查询结果" msgid "Generated by" msgstr "生成者" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列结构被创建或修改。你可以:" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "点击它的名字查看内容" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "点击相应的“选项”链接修改它的设置" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "点击“结构”链接编辑它的结构" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 msgid "Go to database" msgstr "转到数据库" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "设置" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "转到数据表" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "转到视图" @@ -5421,7 +5441,7 @@ msgstr "CSV 输入的第 %d 行字段数有错。" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 msgid "Table name" msgstr "数据表名" @@ -5496,7 +5516,7 @@ msgid "Charset" msgstr "字符集" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "二进制" @@ -5782,8 +5802,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "用户名" @@ -5802,7 +5822,7 @@ msgid "Variable" msgstr "变量" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "值" @@ -5821,34 +5841,34 @@ msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。" msgid "Add slave replication user" msgstr "添加从复制用户" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "任意用户" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "使用文本域" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "任意主机" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "此主机" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "使用主机表" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6082,11 +6102,11 @@ msgstr "在数据库 %s 运行 SQL 查询" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" @@ -6118,7 +6138,7 @@ msgstr "仅查看" msgid "Location of the text file" msgstr "文本文件的位置" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "网站服务器上传文件夹" @@ -6263,21 +6283,21 @@ msgid "" "author what %s does." msgstr "此转换没有说明。
详细功能请询问 %s 的作者。" -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "存储引擎" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "分区定义" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, php-format msgid "Add %s column(s)" msgstr "添加 %s 个字段" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 msgid "You have to add at least one column." msgstr "至少要添加一个字段。" @@ -6460,8 +6480,8 @@ msgstr "更多设置" msgid "Protocol version" msgstr "协议版本" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "用户" @@ -6498,7 +6518,7 @@ msgstr "官方主页 (外链,英文)" msgid "Mailing lists" msgstr "邮件列表" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6509,7 +6529,7 @@ msgstr "" "务器使用默认值运行当然没有问题,不过这样的话,被入侵的可能性会很大,我们强烈" "建议您应该立即给 'root' 用户设置一个密码来补上这个安全漏洞。" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6518,7 +6538,7 @@ msgstr "" "PHP 配置中已启用了 mbstring.func_overload 。这个选项和 phpMyAdmin 不兼容,可" "能会导致一些数据损坏!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6527,7 +6547,7 @@ msgstr "" "没有找到 PHP 扩展 mbstring,而您现在好像在使用多字节字符集。没有 mbstring 扩" "展的 phpMyAdmin 不能正确分割字符串,可能产生意想不到的结果。" -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6539,11 +6559,11 @@ msgstr "" "phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 " "phpMyAdmin 中设置的时间要更短。" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "配置文件现在需要一个短语密码。" -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -6552,14 +6572,14 @@ msgstr "" "安装时所用的 [code]config[/code] 文件夹尚未删除,如果 phpMyAdmin 已经安装配置" "好,请立即删除该文件夹。" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "链接表的附加功能尚未激活。要查出原因,请点击%s此处%s。" -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -6568,7 +6588,7 @@ msgstr "" "你的浏览器不支持或禁用了 Javascript,部分 phpMyAdmin 功能将不可用。如导航框架" "将不能自动刷新。" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -6577,7 +6597,7 @@ msgstr "" "你的 PHP MySQL 库版本 %s 和你的 MySQL 服务器版本 %s 不同。这可能造成一些未知" "的问题。" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6899,168 +6919,168 @@ msgstr "存储引擎" msgid "View dump (schema) of databases" msgstr "查看数据库的转存(大纲)" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "除了授权 (GRANT) 以外的所有权限。" -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "允许修改现有数据表的结构。" -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "允许修改或删除储存过程。" -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "允许创建新数据库和数据表。" -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "允许创建存储过程。" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "允许创建新数据表。" -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "允许创建临时表。" -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "允许创建、删除和重命名用户账户。" -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "允许创建视图。" -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "允许删除数据。" -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "允许删除数据库和数据表。" -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "允许删除数据表。" -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "允许为事件触发器设置事件" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "允许运行存储过程。" -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "允许从文件中导入数据以及将数据导出至文件。" -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允许添加用户和权限,而不允许重新载入权限表。" -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "允许创建和删除索引。" -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "允许插入和替换数据。" -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "允许锁定当前线程的表。" -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "限制用户每小时打开的新连接数。" -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制用户每小时可发送到服务器的查询数。" -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。" -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制该用户的并发连接数。" -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "允许查看所有用户的进程" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中无效。" -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允许重新载入服务器设置并刷新服务器的缓存。" -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "用户有权询问附属者/控制者在哪里。" -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "回复附属者所需。" -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "允许读取数据。" -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "允许访问完整的数据库列表。" -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允许执行 SHOW CREATE VIEW 查询。" -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "允许关闭服务器。" -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7069,153 +7089,153 @@ msgstr "" "允许在达到最大连接数时连接,对于大多数像设置全局变量或杀死其它用户线程这样的" "管理操作是必需的。" -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 msgid "Allows creating and dropping triggers" msgstr "允许创建和删除触发器" -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "允许修改数据。" -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "无权限。" -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 msgctxt "None privileges" msgid "None" msgstr "无" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "按表指定权限" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr " 注意:MySQL 权限名称会以英文显示 " -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "全局权限" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "按数据库指定权限" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "管理" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "资源限制" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意:若将这些选项设为 0(零) 即不限制。" -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "登录信息" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "保持原密码" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 msgid "No user found." msgstr "未找到用户。" -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "用户 %s 己存在!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "您已添加了一个新用户。" -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的权限。" -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "您已撤销 %s 的权限" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密码已修改。" -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "正在删除 %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "没有选择要删除的用户!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "重新载入权限" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "已成功删除选中的用户。" -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "编辑权限" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "撤销" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "任意" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "查看用户" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "授权" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "添加新用户" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "删除选中的用户" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "撤销用户所有权限,然后删除用户。" -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "删除与用户同名的数据库。" -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7227,89 +7247,89 @@ msgstr "" "将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" "s。" -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "按字段指定权限" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "在下列数据库添加权限" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义" -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "在下列数据表添加权限" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "修改登录信息/复制用户" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "创建具有相同权限的新用户然后 ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... 保留旧用户。" -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... 从用户表中删除旧用户。" -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... 撤销旧用户的所有权限,然后删除旧用户。" -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... 从用户表中删除旧用户,然后重新载入权限。" -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "用户数据库" -#: server_privileges.php:2130 +#: server_privileges.php:2129 msgctxt "Create none database for user" msgid "None" msgstr "无" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "创建与用户同名的数据库并授予所有权限" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, php-format msgid "Grant all privileges on database "%s"" msgstr "授予数据库“%s”的所有权限。" -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "用户可以访问“%s”" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "全局" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "按数据库指定" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "通配符" @@ -8260,7 +8280,7 @@ msgstr "无法连接到源数据库" msgid "Could not connect to the target" msgstr "无法连接到目标数据库" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8535,24 +8555,15 @@ msgid "No newer stable version is available" msgstr "没有更新的可用版本" #: setup/lib/index.lib.php:250 -#, fuzzy, php-format -#| msgid "" -#| "This [a@?page=form&formset=features#tab_Security]option[/a] should be " -#| "disabled as it allows attackers to bruteforce login to any MySQL server. " -#| "If you feel this is necessary, use [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#, php-format msgid "" "This %soption%s should be disabled as it allows attackers to bruteforce " "login to any MySQL server. If you feel this is necessary, use %strusted " "proxies list%s. However, IP-based protection may not be reliable if your IP " "belongs to an ISP where thousands of users, including you, are connected to." msgstr "" -"该[a@?page=form&formset=features#tab_Security]选项[/a]应该被关闭以防止尝" -"试暴力破解 MySQL 服务器。如果您认为有必要,可以使用[a@?page=form&" -"formset=features#tab_Security]可信代理表[/a]。但如果您和许多人使用同一个IP地" -"址,该措施的安全性将下降。" +"该%s选项%s应该被关闭以防止有人尝试暴力破解 MySQL 服务器。如果有必要,您可以使" +"用%s可信代理表%s。但如果您和许多人共用一个 IP 地址,该措施的安全性将下降。" #: setup/lib/index.lib.php:252 msgid "" @@ -8564,17 +8575,11 @@ msgstr "" "码,该密语用于加密 Cookies。您不需要记住这个短语密码。" #: setup/lib/index.lib.php:253 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Bzip2 compression " -#| "and decompression[/a] requires functions (%s) which are unavailable on " -#| "this system." +#, php-format msgid "" "%sBzip2 compression and decompression%s requires functions (%s) which are " "unavailable on this system." -msgstr "" -"此系统目前不支持 [a@?page=form&formset=features#tab_Import_export]Bzip2 " -"压缩和解压缩[/a]所必须的 (%s) 函数。" +msgstr "此系统目前不支持 %sBzip2 压缩和解压缩%s所必须的 (%s) 函数。" #: setup/lib/index.lib.php:255 msgid "" @@ -8585,23 +8590,16 @@ msgstr "" "入的权限。" #: setup/lib/index.lib.php:256 -#, fuzzy, php-format -#| msgid "You should use SSL connections if your web server supports it" +#, php-format msgid "This %soption%s should be enabled if your web server supports it." -msgstr "如果浏览器支持,建议使用 SSL 连接。" +msgstr "如果浏览器支持,建议启用该%s选项%s。" #: setup/lib/index.lib.php:258 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]GZip compression and " -#| "decompression[/a] requires functions (%s) which are unavailable on this " -#| "system." +#, php-format msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." -msgstr "" -"此系统目前不支持 [a@?page=form&formset=features#tab_Import_export]GZip 压" -"缩和解压缩[/a]所必须的 (%s) 函数。" +msgstr "此系统目前不支持 %sGZip 压缩和解压缩%s所必须的 (%s) 函数。" #: setup/lib/index.lib.php:260 #, php-format @@ -8610,56 +8608,38 @@ msgid "" "invalidation if %ssession.gc_maxlifetime%s is lower than its value " "(currently %d)." msgstr "" +"如果%s登录 cookie 有效期%s超过 1440 秒且超过 %ssession.gc_maxlifetime%s 的值 " +"(当前 %d) 则可能导致会话随机失效。" #: setup/lib/index.lib.php:262 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] " -#| "should be set to 1800 seconds (30 minutes) at most. Values larger than " -#| "1800 may pose a security risk such as impersonation." +#, php-format msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" -"[a@?page=form&formset=features#tab_Security]登录 cookie 有效期[/a]应小于 " -"1800 秒 (30 分钟)。如果有效期大于 1800 秒,将会增加安全风险。" +"%s登录 cookie 有效期%s不应超过 1800 秒 (30 分钟)。如果有效期大于 1800 秒,将" +"会增加安全风险。" #: setup/lib/index.lib.php:264 #, php-format msgid "" "%sLogin cookie validity%s must be set to a value less or equal to %sLogin " "cookie store%s." -msgstr "" +msgstr "%s登录 cookie 有效期%s不能超过%s登录 cookie 保存时间%s。" #: setup/lib/index.lib.php:266 -#, fuzzy, php-format -#| msgid "" -#| "If you feel this is necessary, use additional protection settings - [a@?" -#| "page=servers&mode=edit&id=%1$d#tab_Server_config]host " -#| "authentication[/a] settings and [a@?page=form&" -#| "formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " -#| "protection may not be reliable if your IP belongs to an ISP where " -#| "thousands of users, including you, are connected to." +#, 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." msgstr "" -"如果您认为有必要,可以使用额外的保护设置 - [a@?page=servers&" -"mode=edit&id=%1$d#tab_Server_config]主机认证[/a]和 [a@?page=form&" -"formset=features#tab_Security]可信代理表[/a]。但如果您和许多人使用同一个IP地" -"址,该措施的安全性将下降。" +"如果有必要,您可以使用额外的保护设置 - %s主机认证%s和%s可信代理表%s。但如果您" +"和许多人共用一个 IP 地址,该措施的安全性将下降。" #: setup/lib/index.lib.php:268 -#, fuzzy, php-format -#| msgid "" -#| "You set the [kbd]config[/kbd] authentication type and included username " -#| "and password for auto-login, which is not a desirable option for live " -#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#, php-format msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -8669,61 +8649,42 @@ msgid "" msgstr "" "您设置了 [kbd]config[/kbd] 认证方式,且为了能够自动登录而保存了用户名和密码," "但在常用主机上不建议这样设置。如果有人知道 phpMyAdmin 的地址,他们就能够进入 " -"phpMyAdmin 的管理界面。建议将[a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]登录认证方式[/a]设置为 [kbd]cookie 认证[/kbd]或 [kbd]HTTP 认证" -"[/kbd]。" +"phpMyAdmin 的管理界面。建议将%s认证方式%s设置为 [kbd]cookie 认证[/kbd]或 " +"[kbd]HTTP 认证[/kbd]。" #: setup/lib/index.lib.php:270 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] " -#| "requires functions (%s) which are unavailable on this system." +#, php-format msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" -"此系统目前不支持 [a@?page=form&formset=features#tab_Import_export]Zip 压" -"缩 (外链,英文)[/a]所必须的 (%s) 函数。" +msgstr "此系统目前不支持 %sZip 压缩%s所必须的 (%s) 函数。" #: setup/lib/index.lib.php:272 -#, fuzzy, php-format -#| msgid "" -#| "[a@?page=form&formset=features#tab_Import_export]Zip decompression[/" -#| "a] requires functions (%s) which are unavailable on this system." +#, php-format msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" -"此系统目前不支持 [a@?page=form&formset=features#tab_Import_export]Zip 解" -"压缩 (外链,英文)[/a]所必须的 (%s) 函数。" +msgstr "此系统目前不支持 %sZip 解压缩%s所必须的 (%s) 函数。" #: setup/lib/index.lib.php:296 -#, fuzzy -#| msgid "You should use SSL connections if your web server supports it" msgid "You should use SSL connections if your web server supports it." -msgstr "如果浏览器支持,建议使用 SSL 连接。" +msgstr "如果服务器支持,你应该使用 SSL 连接。" #: setup/lib/index.lib.php:306 -#, fuzzy -#| msgid "You should use mysqli for performance reasons" msgid "You should use mysqli for performance reasons." -msgstr "您可以使用 mysqli 以获得更高的性能" +msgstr "您可以使用 mysqli 以获得更高的性能。" #: setup/lib/index.lib.php:331 msgid "You allow for connecting to the server without a password." msgstr "该服务器现在允许空密码登录。" #: setup/lib/index.lib.php:351 -#, fuzzy -#| msgid "Key is too short, it should have at least 8 characters" msgid "Key is too short, it should have at least 8 characters." -msgstr "短语密码太短,至少应含有8个字符" +msgstr "短语密码太短,至少应有 8 个字符。" #: setup/lib/index.lib.php:358 -#, fuzzy -#| msgid "Key should contain letters, numbers [em]and[/em] special characters" msgid "Key should contain letters, numbers [em]and[/em] special characters." -msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符" +msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。" #: sql.php:569 tbl_replace.php:380 #, php-format @@ -8742,12 +8703,12 @@ msgstr "显示 SQL 查询" msgid "Validated SQL" msgstr "已校验的 SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "标签" @@ -8756,69 +8717,69 @@ msgstr "标签" msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s " -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "浏览不相关的值" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "函数" -#: tbl_change.php:724 +#: tbl_change.php:722 msgid " Because of its length,
this column might not be editable " msgstr " 因长度问题,
该字段可能无法编辑 " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "删除 BLOB 容器功能" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "二进制 - 无法编辑" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "上传到 BLOB 容器" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "以新行插入" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "显示插入语句" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "然后" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "返回上一页" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "插入新数据" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "返回到本页" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "编辑下一行" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "继续插入 %s 行" @@ -8918,12 +8879,12 @@ msgstr "" msgid "Redraw" msgstr "重绘" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "数据表 %s 已存在!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, php-format msgid "Table %1$s has been created." msgstr "创建数据表 %1$s 成功。" @@ -9393,11 +9354,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "说明" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "权限不足!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "配置文件己更新。" @@ -9409,6 +9370,12 @@ msgstr "视图名" msgid "Rename view to" msgstr "将视图改名为" +#~ msgid "Field navigation using Ctrl+Arrows" +#~ msgstr "使用 Ctrl + 方向键 进行字段浏览" + +#~ msgid "Toggle Query Box Visibility" +#~ msgstr "显示/隐藏查询输入框" + #~ msgid "SVG" #~ msgstr "SVG" diff --git a/po/zh_TW.po b/po/zh_TW.po index 8c6ed60eff..70eed6473d 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-09-21 08:04-0400\n" +"POT-Creation-Date: 2010-10-04 08:08-0400\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: chinese_traditional \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:57 -#: libraries/display_tbl.lib.php:415 server_privileges.php:1595 +#: libraries/display_tbl.lib.php:415 server_privileges.php:1594 msgid "Show all" msgstr "顯示全部" @@ -36,17 +36,20 @@ msgstr "" "目地的視窗無法更新. 可能你已關閉此視窗或你的瀏覽器於安全設定內啟動了無法跨視" "窗更新" -#: browse_foreigners.php:148 db_structure.php:78 db_structure.php:79 -#: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2818 +#: browse_foreigners.php:148 libraries/build_action_titles.inc.php:15 +#: libraries/build_action_titles.inc.php:16 +#: libraries/build_action_titles.inc.php:27 +#: libraries/build_action_titles.inc.php:29 +#: libraries/build_action_titles.inc.php:40 +#: libraries/build_action_titles.inc.php:42 libraries/common.lib.php:2818 #: libraries/common.lib.php:2825 libraries/db_links.inc.php:60 -#: libraries/tbl_links.inc.php:61 tbl_create.php:308 +#: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "搜索" -#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:382 -#: db_operations.php:486 db_operations.php:510 db_search.php:359 -#: db_structure.php:554 js/messages.php:59 libraries/Config.class.php:1220 +#: browse_foreigners.php:151 db_operations.php:338 db_operations.php:383 +#: db_operations.php:489 db_operations.php:513 db_search.php:359 +#: db_structure.php:514 js/messages.php:59 libraries/Config.class.php:1220 #: libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1306 #: libraries/common.lib.php:2271 libraries/core.lib.php:544 @@ -61,14 +64,14 @@ msgstr "搜索" #: libraries/schema/User_Schema.class.php:449 #: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:380 #: libraries/sql_query_form.lib.php:450 libraries/sql_query_form.lib.php:515 -#: libraries/tbl_properties.inc.php:785 main.php:104 navigation.php:230 +#: libraries/tbl_properties.inc.php:781 main.php:104 navigation.php:230 #: pmd_pdf.php:113 prefs_manage.php:265 prefs_manage.php:316 -#: server_binlog.php:128 server_privileges.php:666 server_privileges.php:1706 -#: server_privileges.php:2063 server_privileges.php:2110 -#: server_privileges.php:2150 server_replication.php:233 +#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705 +#: server_privileges.php:2062 server_privileges.php:2109 +#: server_privileges.php:2149 server_replication.php:233 #: server_replication.php:316 server_replication.php:339 -#: server_synchronize.php:1207 tbl_change.php:324 tbl_change.php:1074 -#: tbl_change.php:1111 tbl_indexes.php:252 tbl_operations.php:262 +#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1076 +#: tbl_change.php:1113 tbl_indexes.php:252 tbl_operations.php:262 #: tbl_operations.php:299 tbl_operations.php:496 tbl_operations.php:558 #: tbl_operations.php:728 tbl_select.php:323 tbl_structure.php:652 #: tbl_structure.php:688 tbl_tracking.php:389 tbl_tracking.php:506 @@ -120,7 +123,7 @@ msgid "Database comment: " msgstr "資料庫註解文字: " #: db_datadict.php:160 libraries/schema/Pdf_Relation_Schema.class.php:1215 -#: libraries/tbl_properties.inc.php:727 tbl_operations.php:344 +#: libraries/tbl_properties.inc.php:723 tbl_operations.php:344 #: tbl_printview.php:127 msgid "Table comments" msgstr "資料表註解文字" @@ -131,7 +134,7 @@ msgstr "資料表註解文字" #: libraries/schema/Pdf_Relation_Schema.class.php:1241 #: libraries/schema/Pdf_Relation_Schema.class.php:1262 #: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:302 tbl_indexes.php:187 tbl_printview.php:139 +#: tbl_change.php:300 tbl_indexes.php:187 tbl_printview.php:139 #: tbl_relation.php:399 tbl_select.php:132 tbl_structure.php:197 #: tbl_tracking.php:267 tbl_tracking.php:318 #, fuzzy @@ -146,8 +149,8 @@ msgstr "欄位名稱" #: libraries/export/texytext.php:227 #: libraries/schema/Pdf_Relation_Schema.class.php:1242 #: libraries/schema/Pdf_Relation_Schema.class.php:1263 -#: libraries/tbl_properties.inc.php:99 server_privileges.php:2163 -#: tbl_change.php:281 tbl_change.php:308 tbl_chart.php:132 +#: libraries/tbl_properties.inc.php:99 server_privileges.php:2162 +#: tbl_change.php:279 tbl_change.php:306 tbl_chart.php:132 #: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:133 #: tbl_structure.php:198 tbl_structure.php:750 tbl_tracking.php:268 #: tbl_tracking.php:315 @@ -159,13 +162,13 @@ msgstr "型態" #: libraries/export/odt.php:307 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 #: libraries/schema/Pdf_Relation_Schema.class.php:1265 -#: libraries/tbl_properties.inc.php:108 tbl_change.php:317 +#: libraries/tbl_properties.inc.php:108 tbl_change.php:315 #: tbl_printview.php:142 tbl_structure.php:201 tbl_tracking.php:270 #: tbl_tracking.php:321 msgid "Null" msgstr "Null" -#: db_datadict.php:173 db_structure.php:485 libraries/export/htmlword.php:250 +#: db_datadict.php:173 db_structure.php:445 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 #: libraries/export/texytext.php:229 #: libraries/schema/Pdf_Relation_Schema.class.php:1245 @@ -184,8 +187,8 @@ msgid "Links to" msgstr "連結到" #: db_datadict.php:179 db_printview.php:110 -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:106 -#: libraries/config/messages.inc.php:128 libraries/export/htmlword.php:255 +#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:127 libraries/export/htmlword.php:255 #: libraries/export/latex.php:379 libraries/export/odt.php:319 #: libraries/export/texytext.php:234 #: libraries/schema/Pdf_Relation_Schema.class.php:1258 @@ -201,10 +204,10 @@ msgstr "註解" #: libraries/mult_submits.inc.php:261 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:130 -#: server_privileges.php:1399 server_privileges.php:1410 -#: server_privileges.php:1650 server_privileges.php:1661 -#: server_privileges.php:1981 server_privileges.php:1986 -#: server_privileges.php:2280 sql.php:199 sql.php:260 tbl_printview.php:226 +#: server_privileges.php:1398 server_privileges.php:1409 +#: server_privileges.php:1649 server_privileges.php:1660 +#: server_privileges.php:1980 server_privileges.php:1985 +#: server_privileges.php:2279 sql.php:199 sql.php:260 tbl_printview.php:226 #: tbl_structure.php:373 tbl_tracking.php:331 tbl_tracking.php:336 msgid "No" msgstr " 否 " @@ -220,10 +223,10 @@ msgstr " 否 " #: libraries/mult_submits.inc.php:260 libraries/mult_submits.inc.php:271 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/user_preferences.lib.php:310 prefs_manage.php:129 -#: server_databases.php:75 server_privileges.php:1396 -#: server_privileges.php:1407 server_privileges.php:1647 -#: server_privileges.php:1661 server_privileges.php:1981 -#: server_privileges.php:1984 server_privileges.php:2280 sql.php:259 +#: server_databases.php:75 server_privileges.php:1395 +#: server_privileges.php:1406 server_privileges.php:1646 +#: server_privileges.php:1660 server_privileges.php:1980 +#: server_privileges.php:1983 server_privileges.php:2279 sql.php:259 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:373 #: tbl_tracking.php:329 tbl_tracking.php:334 msgid "Yes" @@ -250,7 +253,7 @@ msgstr "全選" msgid "Unselect All" msgstr "全部取消" -#: db_operations.php:41 tbl_create.php:47 +#: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" msgstr "資料庫名稱並未輸入!!" @@ -264,80 +267,80 @@ msgstr "資料庫 %s 已更改名稱為 %s" msgid "Database %s has been copied to %s" msgstr "資料庫 %s 已複製到 %s" -#: db_operations.php:365 +#: db_operations.php:366 msgid "Rename database to" msgstr "更改資料庫名稱到" -#: db_operations.php:370 server_processlist.php:56 +#: db_operations.php:371 server_processlist.php:56 msgid "Command" msgstr "指令" -#: db_operations.php:397 +#: db_operations.php:400 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "更改資料庫名稱到" -#: db_operations.php:409 +#: db_operations.php:412 #, php-format msgid "Database %s has been dropped." msgstr "資料庫 %s 已被刪除" -#: db_operations.php:414 +#: db_operations.php:417 #, fuzzy msgid "Drop the database (DROP)" msgstr "沒有資料庫" -#: db_operations.php:442 +#: db_operations.php:445 msgid "Copy database to" msgstr "複製資料庫到" -#: db_operations.php:449 tbl_operations.php:525 tbl_tracking.php:382 +#: db_operations.php:452 tbl_operations.php:525 tbl_tracking.php:382 msgid "Structure only" msgstr "只有結構" -#: db_operations.php:450 tbl_operations.php:526 tbl_tracking.php:384 +#: db_operations.php:453 tbl_operations.php:526 tbl_tracking.php:384 msgid "Structure and data" msgstr "結構與資料" -#: db_operations.php:451 tbl_operations.php:527 tbl_tracking.php:383 +#: db_operations.php:454 tbl_operations.php:527 tbl_tracking.php:383 msgid "Data only" msgstr "只有資料" -#: db_operations.php:459 +#: db_operations.php:462 msgid "CREATE DATABASE before copying" msgstr "複製前建立資料庫 (CREATE DATABASE)" -#: db_operations.php:462 libraries/config/messages.inc.php:123 -#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:131 tbl_operations.php:533 +#: db_operations.php:465 libraries/config/messages.inc.php:122 +#: libraries/config/messages.inc.php:123 libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:130 tbl_operations.php:533 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:466 libraries/config/messages.inc.php:116 +#: db_operations.php:469 libraries/config/messages.inc.php:115 #: tbl_operations.php:296 tbl_operations.php:535 msgid "Add AUTO_INCREMENT value" msgstr "新增 AUTO_INCREMENT 數值" -#: db_operations.php:470 tbl_operations.php:542 +#: db_operations.php:473 tbl_operations.php:542 msgid "Add constraints" msgstr "加入限制" -#: db_operations.php:483 +#: db_operations.php:486 msgid "Switch to copied database" msgstr "轉移到複製之資料庫" -#: db_operations.php:503 libraries/Index.class.php:447 +#: db_operations.php:506 libraries/Index.class.php:447 #: libraries/db_structure.lib.php:53 libraries/mysql_charsets.lib.php:106 -#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:733 +#: libraries/tbl_properties.inc.php:106 libraries/tbl_properties.inc.php:729 #: server_collations.php:53 server_collations.php:65 server_databases.php:122 #: tbl_operations.php:360 tbl_select.php:134 tbl_structure.php:199 #: tbl_structure.php:858 tbl_tracking.php:269 tbl_tracking.php:320 msgid "Collation" msgstr "校對" -#: db_operations.php:516 +#: db_operations.php:519 #, fuzzy, php-format #| msgid "" #| "The additional features for working with linked tables have been " @@ -347,24 +350,24 @@ msgid "" "click %shere%s." msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因." -#: db_operations.php:549 +#: db_operations.php:552 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "關聯概要" #: db_printview.php:102 db_tracking.php:84 db_tracking.php:169 -#: libraries/config/messages.inc.php:485 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:484 libraries/db_structure.lib.php:37 #: libraries/export/xml.php:331 libraries/header.inc.php:138 -#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1757 -#: server_privileges.php:1813 server_privileges.php:2077 +#: libraries/schema/User_Schema.class.php:237 server_privileges.php:1756 +#: server_privileges.php:1812 server_privileges.php:2076 #: server_synchronize.php:421 server_synchronize.php:864 tbl_tracking.php:586 #: test/theme.php:74 msgid "Table" msgstr "資料表" #: db_printview.php:103 libraries/db_structure.lib.php:47 -#: libraries/header_printview.inc.php:62 libraries/import.lib.php:145 +#: libraries/header_printview.inc.php:62 libraries/import.lib.php:147 #: navigation.php:623 navigation.php:645 server_databases.php:133 #: tbl_printview.php:391 tbl_structure.php:388 tbl_structure.php:475 #: tbl_structure.php:868 @@ -375,33 +378,33 @@ msgstr "資料列列數" msgid "Size" msgstr "大小" -#: db_printview.php:160 db_structure.php:441 libraries/export/sql.php:607 -#: libraries/export/sql.php:947 +#: db_printview.php:160 db_structure.php:401 libraries/export/sql.php:624 +#: libraries/export/sql.php:964 msgid "in use" msgstr "使用中" #: db_printview.php:185 libraries/db_info.inc.php:86 -#: libraries/export/sql.php:562 +#: libraries/export/sql.php:579 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 tbl_printview.php:431 #: tbl_structure.php:900 msgid "Creation" msgstr "建立" #: db_printview.php:194 libraries/db_info.inc.php:91 -#: libraries/export/sql.php:567 +#: libraries/export/sql.php:584 #: libraries/schema/Pdf_Relation_Schema.class.php:1225 tbl_printview.php:441 #: tbl_structure.php:908 msgid "Last update" msgstr "最後更新" #: db_printview.php:203 libraries/db_info.inc.php:96 -#: libraries/export/sql.php:572 +#: libraries/export/sql.php:589 #: libraries/schema/Pdf_Relation_Schema.class.php:1230 tbl_printview.php:451 #: tbl_structure.php:916 msgid "Last check" msgstr "最後檢查" -#: db_printview.php:220 db_structure.php:464 +#: db_printview.php:220 db_structure.php:424 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -410,7 +413,7 @@ msgstr[0] "%s 資料表" msgstr[1] "%s 資料表" #: db_qbe.php:25 import.php:452 libraries/Message.class.php:190 -#: libraries/display_tbl.lib.php:1982 libraries/sql_query_form.lib.php:136 +#: libraries/display_tbl.lib.php:1988 libraries/sql_query_form.lib.php:136 #: tbl_operations.php:210 tbl_relation.php:289 tbl_row_action.php:129 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -440,7 +443,7 @@ msgid "Descending" msgstr "遞減" #: db_qbe.php:260 db_tracking.php:90 libraries/display_tbl.lib.php:306 -#: tbl_change.php:271 tbl_tracking.php:591 +#: tbl_change.php:269 tbl_tracking.php:591 msgid "Show" msgstr "顯示" @@ -461,8 +464,8 @@ msgid "Del" msgstr "移除" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:518 db_qbe.php:549 -#: libraries/tbl_properties.inc.php:782 server_privileges.php:299 -#: tbl_change.php:929 tbl_indexes.php:248 tbl_select.php:284 +#: libraries/tbl_properties.inc.php:778 server_privileges.php:298 +#: tbl_change.php:927 tbl_indexes.php:248 tbl_select.php:284 msgid "Or" msgstr "或" @@ -535,17 +538,19 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s 項資料符合 - 於資料表 %s" msgstr[1] "%s 項資料符合 - 於資料表 %s" -#: db_search.php:255 db_structure.php:76 db_structure.php:77 -#: db_structure.php:89 db_structure.php:91 db_structure.php:102 -#: db_structure.php:104 libraries/common.lib.php:2820 +#: db_search.php:255 libraries/build_action_titles.inc.php:13 +#: libraries/build_action_titles.inc.php:14 +#: libraries/build_action_titles.inc.php:26 +#: libraries/build_action_titles.inc.php:28 +#: libraries/build_action_titles.inc.php:39 +#: libraries/build_action_titles.inc.php:41 libraries/common.lib.php:2820 #: libraries/mult_submits.inc.php:115 libraries/tbl_links.inc.php:48 -#: tbl_create.php:302 tbl_structure.php:36 tbl_structure.php:48 -#: tbl_structure.php:557 +#: tbl_structure.php:36 tbl_structure.php:48 tbl_structure.php:557 msgid "Browse" msgstr "瀏覽" #: db_search.php:260 libraries/display_tbl.lib.php:1166 -#: libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:2063 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -590,156 +595,141 @@ msgstr "於以下資料表:" msgid "Inside column:" msgstr "於以下資料表:" -#: db_structure.php:80 db_structure.php:81 db_structure.php:93 -#: db_structure.php:94 db_structure.php:106 db_structure.php:107 -#: libraries/common.lib.php:2819 libraries/sql_query_form.lib.php:314 -#: libraries/sql_query_form.lib.php:317 libraries/tbl_links.inc.php:67 -#: tbl_create.php:311 -msgid "Insert" -msgstr "新增" - -#: db_structure.php:82 db_structure.php:95 db_structure.php:108 -#: libraries/common.lib.php:2816 libraries/common.lib.php:2823 -#: libraries/config/setup.forms.php:289 libraries/config/setup.forms.php:326 -#: libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:263 -#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 -#: libraries/import.lib.php:1148 libraries/tbl_links.inc.php:54 -#: pmd_general.php:133 server_privileges.php:595 server_replication.php:313 -#: tbl_create.php:305 tbl_tracking.php:263 -msgid "Structure" -msgstr "結構" - -#: db_structure.php:83 db_structure.php:84 db_structure.php:96 -#: db_structure.php:97 db_structure.php:109 db_structure.php:110 -#: db_structure.php:535 db_structure.php:536 db_tracking.php:103 -#: libraries/Index.class.php:482 libraries/common.lib.php:1638 -#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 -#: server_databases.php:363 tbl_create.php:319 tbl_structure.php:26 -#: tbl_structure.php:150 tbl_structure.php:151 tbl_structure.php:561 -msgid "Drop" -msgstr "刪除" - -#: db_structure.php:85 db_structure.php:86 db_structure.php:98 -#: db_structure.php:99 db_structure.php:111 db_structure.php:112 -#: db_structure.php:533 db_structure.php:534 libraries/common.lib.php:1637 -#: libraries/mult_submits.inc.php:38 tbl_create.php:314 -msgid "Empty" -msgstr "清空" - -#: db_structure.php:302 tbl_operations.php:653 +#: db_structure.php:262 tbl_operations.php:653 #, php-format msgid "Table %s has been emptied" msgstr "資料表 %s 已被清空" -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "View %s has been dropped" msgstr "檢視 %s 己被刪除." -#: db_structure.php:311 tbl_operations.php:670 +#: db_structure.php:271 tbl_operations.php:670 #, php-format msgid "Table %s has been dropped" msgstr "資料表 %s 已被刪除" -#: db_structure.php:318 tbl_create.php:294 +#: db_structure.php:278 tbl_create.php:295 msgid "Tracking is active." msgstr "" -#: db_structure.php:320 tbl_create.php:296 +#: db_structure.php:280 tbl_create.php:297 msgid "Tracking is not active." msgstr "" -#: db_structure.php:404 libraries/display_tbl.lib.php:1945 +#: db_structure.php:364 libraries/display_tbl.lib.php:1951 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" "s." msgstr "" -#: db_structure.php:418 db_structure.php:432 libraries/header.inc.php:138 +#: db_structure.php:378 db_structure.php:392 libraries/header.inc.php:138 #: libraries/tbl_info.inc.php:60 tbl_structure.php:205 test/theme.php:73 msgid "View" msgstr "檢視" -#: db_structure.php:469 libraries/db_structure.lib.php:40 +#: db_structure.php:429 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 #: server_replication.php:162 server_status.php:375 msgid "Replication" msgstr "複製" -#: db_structure.php:473 +#: db_structure.php:433 msgid "Sum" msgstr "總計" -#: db_structure.php:480 libraries/StorageEngine.class.php:351 +#: db_structure.php:440 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "這 MySQL 伺服器的預設儲存引擎是 %s " -#: db_structure.php:508 db_structure.php:525 db_structure.php:526 -#: libraries/display_tbl.lib.php:2082 libraries/display_tbl.lib.php:2087 +#: db_structure.php:468 db_structure.php:485 db_structure.php:486 +#: libraries/display_tbl.lib.php:2088 libraries/display_tbl.lib.php:2093 #: libraries/mult_submits.inc.php:15 server_databases.php:357 -#: server_databases.php:362 server_privileges.php:1678 tbl_structure.php:545 +#: server_databases.php:362 server_privileges.php:1677 tbl_structure.php:545 #: tbl_structure.php:554 msgid "With selected:" msgstr "選擇的資料表:" -#: db_structure.php:511 libraries/display_tbl.lib.php:2077 -#: server_databases.php:359 server_privileges.php:571 -#: server_privileges.php:1681 tbl_structure.php:548 +#: db_structure.php:471 libraries/display_tbl.lib.php:2083 +#: server_databases.php:359 server_privileges.php:570 +#: server_privileges.php:1680 tbl_structure.php:548 msgid "Check All" msgstr "全選" -#: db_structure.php:515 libraries/display_tbl.lib.php:2078 +#: db_structure.php:475 libraries/display_tbl.lib.php:2084 #: libraries/replication_gui.lib.php:35 server_databases.php:361 -#: server_privileges.php:574 server_privileges.php:1685 tbl_structure.php:552 +#: server_privileges.php:573 server_privileges.php:1684 tbl_structure.php:552 msgid "Uncheck All" msgstr "全部取消" -#: db_structure.php:520 +#: db_structure.php:480 msgid "Check tables having overhead" msgstr "檢查額外記錄 (overhead)" -#: db_structure.php:527 db_structure.php:528 -#: libraries/config/messages.inc.php:160 libraries/db_links.inc.php:56 -#: libraries/display_tbl.lib.php:2095 libraries/display_tbl.lib.php:2226 +#: db_structure.php:487 db_structure.php:488 +#: libraries/config/messages.inc.php:159 libraries/db_links.inc.php:56 +#: libraries/display_tbl.lib.php:2101 libraries/display_tbl.lib.php:2232 #: libraries/mult_submits.inc.php:61 libraries/server_links.inc.php:69 #: libraries/tbl_links.inc.php:73 pmd_pdf.php:81 pmd_pdf.php:106 -#: prefs_manage.php:288 server_privileges.php:1372 +#: prefs_manage.php:288 server_privileges.php:1371 #: setup/frames/menu.inc.php:21 tbl_row_action.php:58 msgid "Export" msgstr "輸出" -#: db_structure.php:529 db_structure.php:530 db_structure.php:586 -#: libraries/display_tbl.lib.php:2181 libraries/mult_submits.inc.php:27 +#: db_structure.php:489 db_structure.php:490 db_structure.php:545 +#: libraries/display_tbl.lib.php:2187 libraries/mult_submits.inc.php:27 #: tbl_structure.php:582 tbl_structure.php:584 msgid "Print view" msgstr "列印檢視" -#: db_structure.php:537 db_structure.php:538 libraries/mult_submits.inc.php:41 +#: db_structure.php:493 db_structure.php:494 +#: libraries/build_action_titles.inc.php:22 +#: libraries/build_action_titles.inc.php:23 +#: libraries/build_action_titles.inc.php:35 +#: libraries/build_action_titles.inc.php:36 +#: libraries/build_action_titles.inc.php:48 +#: libraries/build_action_titles.inc.php:49 libraries/common.lib.php:1637 +#: libraries/mult_submits.inc.php:38 +msgid "Empty" +msgstr "清空" + +#: db_structure.php:495 db_structure.php:496 db_tracking.php:103 +#: libraries/Index.class.php:482 libraries/build_action_titles.inc.php:20 +#: libraries/build_action_titles.inc.php:21 +#: libraries/build_action_titles.inc.php:33 +#: libraries/build_action_titles.inc.php:34 +#: libraries/build_action_titles.inc.php:46 +#: libraries/build_action_titles.inc.php:47 libraries/common.lib.php:1638 +#: libraries/mult_submits.inc.php:35 libraries/mult_submits.inc.php:72 +#: server_databases.php:363 tbl_structure.php:26 tbl_structure.php:150 +#: tbl_structure.php:151 tbl_structure.php:561 +msgid "Drop" +msgstr "刪除" + +#: db_structure.php:497 db_structure.php:498 libraries/mult_submits.inc.php:41 #: tbl_operations.php:578 msgid "Check table" msgstr "檢查資料表" -#: db_structure.php:539 db_structure.php:540 libraries/mult_submits.inc.php:46 +#: db_structure.php:499 db_structure.php:500 libraries/mult_submits.inc.php:46 #: tbl_operations.php:618 tbl_structure.php:800 tbl_structure.php:802 msgid "Optimize table" msgstr "最佳化資料表" -#: db_structure.php:541 db_structure.php:542 libraries/mult_submits.inc.php:51 +#: db_structure.php:501 db_structure.php:502 libraries/mult_submits.inc.php:51 #: tbl_operations.php:608 msgid "Repair table" msgstr "修復資料表" -#: db_structure.php:543 db_structure.php:544 libraries/mult_submits.inc.php:56 +#: db_structure.php:503 db_structure.php:504 libraries/mult_submits.inc.php:56 #: tbl_operations.php:598 msgid "Analyze table" msgstr "分析資料表" -#: db_structure.php:593 libraries/schema/User_Schema.class.php:387 +#: db_structure.php:552 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" msgstr "數據字典" @@ -747,13 +737,13 @@ msgstr "數據字典" msgid "Tracked tables" msgstr "" -#: db_tracking.php:83 libraries/config/messages.inc.php:479 +#: db_tracking.php:83 libraries/config/messages.inc.php:478 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 -#: libraries/export/odt.php:120 libraries/export/sql.php:390 +#: libraries/export/odt.php:120 libraries/export/sql.php:441 #: libraries/export/texytext.php:77 libraries/export/xml.php:258 #: libraries/header_printview.inc.php:57 server_databases.php:180 -#: server_privileges.php:1752 server_privileges.php:1813 -#: server_privileges.php:2071 server_processlist.php:55 +#: server_privileges.php:1751 server_privileges.php:1812 +#: server_privileges.php:2070 server_processlist.php:55 #: server_synchronize.php:1177 server_synchronize.php:1181 #: tbl_tracking.php:585 test/theme.php:64 msgid "Database" @@ -780,8 +770,8 @@ msgstr "狀態" #: db_tracking.php:89 libraries/Index.class.php:439 #: libraries/db_structure.lib.php:44 server_databases.php:214 -#: server_privileges.php:1624 server_privileges.php:1817 -#: server_privileges.php:2166 tbl_structure.php:207 +#: server_privileges.php:1623 server_privileges.php:1816 +#: server_privileges.php:2165 tbl_structure.php:207 msgid "Action" msgstr "執行" @@ -828,12 +818,12 @@ msgstr "檢查資料表" msgid "Database Log" msgstr "資料庫" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:798 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:794 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:799 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:795 msgid "Enter each value in a separate field." msgstr "" @@ -902,7 +892,7 @@ msgstr "書籤已經刪除." msgid "Showing bookmark" msgstr "顯示書籤" -#: import.php:401 sql.php:804 +#: import.php:401 sql.php:807 #, php-format msgid "Bookmark %s created" msgstr "書籤 %s 已建立" @@ -925,7 +915,7 @@ msgid "" msgstr "" #: import_status.php:30 libraries/common.lib.php:661 -#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:124 +#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" msgstr "回上一頁" @@ -1004,11 +994,11 @@ msgstr "請輸入主機名稱!" msgid "The user name is empty!" msgstr "請輸入使用者名稱!" -#: js/messages.php:50 server_privileges.php:1239 user_password.php:65 +#: js/messages.php:50 server_privileges.php:1238 user_password.php:64 msgid "The password is empty!" msgstr "請輸入密碼!" -#: js/messages.php:51 server_privileges.php:1237 user_password.php:68 +#: js/messages.php:51 server_privileges.php:1236 user_password.php:67 msgid "The passwords aren't the same!" msgstr "第二次輸入的密碼不同!" @@ -1111,116 +1101,122 @@ msgid "Searching" msgstr "搜索" #: js/messages.php:84 -msgid "Toggle Query Box Visibility" -msgstr "" +#, fuzzy +msgid "Hide query box" +msgstr "SQL 語法" #: js/messages.php:85 #, fuzzy +msgid "Show query box" +msgstr "SQL 語法" + +#: js/messages.php:86 +#, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "引擎" -#: js/messages.php:88 tbl_change.php:296 tbl_indexes.php:198 +#: js/messages.php:89 tbl_change.php:294 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "忽略" -#: js/messages.php:91 pmd_save_pos.php:52 +#: js/messages.php:92 pmd_save_pos.php:52 msgid "Modifications have been saved" msgstr "修改已儲存" -#: js/messages.php:92 pmd_relation_upd.php:47 +#: js/messages.php:93 pmd_relation_upd.php:47 #, fuzzy msgid "Relation deleted" msgstr "關聯檢視" -#: js/messages.php:93 pmd_relation_new.php:62 +#: js/messages.php:94 pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:94 pmd_relation_new.php:84 +#: js/messages.php:95 pmd_relation_new.php:84 #, fuzzy msgid "Internal relation added" msgstr "內部關聯" -#: js/messages.php:95 pmd_relation_new.php:61 pmd_relation_new.php:86 +#: js/messages.php:96 pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:96 pmd_relation_new.php:29 +#: js/messages.php:97 pmd_relation_new.php:29 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:98 libraries/relation.lib.php:89 +#: js/messages.php:99 libraries/relation.lib.php:89 #: libraries/relation.lib.php:101 msgid "General relation features" msgstr "一般關聯功能" -#: js/messages.php:98 libraries/config/FormDisplay.tpl.php:173 +#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:173 #: libraries/relation.lib.php:83 libraries/relation.lib.php:90 msgid "Disabled" msgstr "未啟動" -#: js/messages.php:99 +#: js/messages.php:100 msgid "Select referenced key" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:102 pmd_general.php:76 tbl_relation.php:545 +#: js/messages.php:103 pmd_general.php:76 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "選擇顯示之欄位" -#: js/messages.php:105 +#: js/messages.php:106 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "產生密碼" -#: js/messages.php:106 libraries/replication_gui.lib.php:365 +#: js/messages.php:107 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "產生" -#: js/messages.php:107 +#: js/messages.php:108 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "更改密碼" -#: js/messages.php:110 +#: js/messages.php:111 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Mon" #. l10n: Display text for calendar close link -#: js/messages.php:120 +#: js/messages.php:121 #, fuzzy #| msgid "None" msgid "Done" msgstr "不適用" #. l10n: Display text for previous month link in calendar -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "前一頁" #. l10n: Display text for next month link in calendar -#: js/messages.php:124 libraries/common.lib.php:2335 +#: js/messages.php:125 libraries/common.lib.php:2335 #: libraries/common.lib.php:2338 libraries/display_tbl.lib.php:336 #: server_binlog.php:191 server_binlog.php:193 tbl_printview.php:421 #: tbl_structure.php:892 @@ -1228,96 +1224,96 @@ msgid "Next" msgstr "下一個" #. l10n: Display text for current month link in calendar -#: js/messages.php:126 +#: js/messages.php:127 #, fuzzy #| msgid "Total" msgid "Today" msgstr "總共" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Binary" msgid "January" msgstr "二進制碼" -#: js/messages.php:130 +#: js/messages.php:131 msgid "February" msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:133 +#: js/messages.php:134 msgid "May" msgstr "May" -#: js/messages.php:134 +#: js/messages.php:135 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:135 +#: js/messages.php:136 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:136 +#: js/messages.php:137 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:137 +#: js/messages.php:138 msgid "September" msgstr "" -#: js/messages.php:138 +#: js/messages.php:139 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Oct" -#: js/messages.php:139 +#: js/messages.php:140 msgid "November" msgstr "" -#: js/messages.php:140 +#: js/messages.php:141 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:144 libraries/common.lib.php:1540 +#: js/messages.php:145 libraries/common.lib.php:1540 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:146 libraries/common.lib.php:1542 +#: js/messages.php:147 libraries/common.lib.php:1542 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:148 libraries/common.lib.php:1544 +#: js/messages.php:149 libraries/common.lib.php:1544 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:150 libraries/common.lib.php:1546 +#: js/messages.php:151 libraries/common.lib.php:1546 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:152 libraries/common.lib.php:1548 +#: js/messages.php:153 libraries/common.lib.php:1548 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1325,176 +1321,176 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:154 libraries/common.lib.php:1550 +#: js/messages.php:155 libraries/common.lib.php:1550 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:156 libraries/common.lib.php:1552 +#: js/messages.php:157 libraries/common.lib.php:1552 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:158 libraries/common.lib.php:1554 +#: js/messages.php:159 libraries/common.lib.php:1554 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:160 libraries/common.lib.php:1556 +#: js/messages.php:161 libraries/common.lib.php:1556 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:162 libraries/common.lib.php:1558 +#: js/messages.php:163 libraries/common.lib.php:1558 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:164 libraries/common.lib.php:1560 +#: js/messages.php:165 libraries/common.lib.php:1560 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:166 libraries/common.lib.php:1562 +#: js/messages.php:167 libraries/common.lib.php:1562 msgid "Dec" msgstr "Dec" -#: js/messages.php:169 +#: js/messages.php:170 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sun" -#: js/messages.php:170 +#: js/messages.php:171 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Mon" -#: js/messages.php:171 +#: js/messages.php:172 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Tue" -#: js/messages.php:172 +#: js/messages.php:173 msgid "Wednesday" msgstr "" -#: js/messages.php:173 +#: js/messages.php:174 msgid "Thursday" msgstr "" -#: js/messages.php:174 +#: js/messages.php:175 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fri" -#: js/messages.php:175 +#: js/messages.php:176 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:179 libraries/common.lib.php:1565 +#: js/messages.php:180 libraries/common.lib.php:1565 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:181 libraries/common.lib.php:1567 +#: js/messages.php:182 libraries/common.lib.php:1567 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:183 libraries/common.lib.php:1569 +#: js/messages.php:184 libraries/common.lib.php:1569 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:185 libraries/common.lib.php:1571 +#: js/messages.php:186 libraries/common.lib.php:1571 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:187 libraries/common.lib.php:1573 +#: js/messages.php:188 libraries/common.lib.php:1573 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:189 libraries/common.lib.php:1575 +#: js/messages.php:190 libraries/common.lib.php:1575 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:191 libraries/common.lib.php:1577 +#: js/messages.php:192 libraries/common.lib.php:1577 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:195 +#: js/messages.php:196 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sun" #. l10n: Minimal week day name -#: js/messages.php:197 +#: js/messages.php:198 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Mon" #. l10n: Minimal week day name -#: js/messages.php:199 +#: js/messages.php:200 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Tue" #. l10n: Minimal week day name -#: js/messages.php:201 +#: js/messages.php:202 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wed" #. l10n: Minimal week day name -#: js/messages.php:203 +#: js/messages.php:204 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Thu" #. l10n: Minimal week day name -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fri" #. l10n: Minimal week day name -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sat" #. l10n: Column header for week of the year in calendar -#: js/messages.php:209 +#: js/messages.php:210 msgid "Wk" msgstr "" -#: js/messages.php:211 +#: js/messages.php:212 msgid "Hour" msgstr "" -#: js/messages.php:212 +#: js/messages.php:213 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "使用中" -#: js/messages.php:213 +#: js/messages.php:214 #, fuzzy #| msgid "per second" msgid "Second" @@ -1570,9 +1566,9 @@ msgid "Comment" msgstr "註解" #: libraries/Index.class.php:465 libraries/common.lib.php:610 -#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:459 -#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1131 -#: libraries/import.lib.php:1155 libraries/schema/User_Schema.class.php:168 +#: libraries/common.lib.php:1143 libraries/config/messages.inc.php:458 +#: libraries/display_tbl.lib.php:1112 libraries/import.lib.php:1150 +#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:125 tbl_row_action.php:68 msgid "Edit" msgstr "編輯" @@ -1593,15 +1589,15 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:173 +#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:172 #: libraries/server_links.inc.php:42 server_databases.php:99 -#: server_privileges.php:1752 test/theme.php:92 +#: server_privileges.php:1751 test/theme.php:92 msgid "Databases" msgstr "資料庫" #: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308 #: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:575 -#: libraries/core.lib.php:232 libraries/import.lib.php:134 tbl_change.php:925 +#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:923 #: tbl_operations.php:210 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "錯誤" @@ -1844,6 +1840,32 @@ msgstr "" msgid "Could not open file: %s" msgstr "" +#: libraries/build_action_titles.inc.php:17 +#: libraries/build_action_titles.inc.php:18 +#: libraries/build_action_titles.inc.php:30 +#: libraries/build_action_titles.inc.php:31 +#: libraries/build_action_titles.inc.php:43 +#: libraries/build_action_titles.inc.php:44 libraries/common.lib.php:2819 +#: libraries/sql_query_form.lib.php:314 libraries/sql_query_form.lib.php:317 +#: libraries/tbl_links.inc.php:67 +msgid "Insert" +msgstr "新增" + +#: libraries/build_action_titles.inc.php:19 +#: libraries/build_action_titles.inc.php:32 +#: libraries/build_action_titles.inc.php:45 libraries/common.lib.php:2816 +#: libraries/common.lib.php:2823 libraries/config/setup.forms.php:289 +#: libraries/config/setup.forms.php:326 libraries/config/setup.forms.php:360 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:262 +#: libraries/db_links.inc.php:48 libraries/export/latex.php:351 +#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 +#: pmd_general.php:133 server_privileges.php:594 server_replication.php:313 +#: tbl_tracking.php:263 +msgid "Structure" +msgstr "結構" + #: libraries/chart.lib.php:40 #, fuzzy msgid "Query statistics" @@ -1908,7 +1930,7 @@ msgstr "伺服器索引錯誤: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "伺服器 %1$s 主機名稱錯誤, 請翻查設定值." -#: libraries/common.inc.php:633 libraries/config/messages.inc.php:483 +#: libraries/common.inc.php:633 libraries/config/messages.inc.php:482 #: libraries/header.inc.php:115 main.php:166 test/theme.php:56 msgid "Server" msgstr "伺服器" @@ -1964,7 +1986,7 @@ msgstr "MySQL 傳回: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:460 +#: libraries/common.lib.php:1119 libraries/config/messages.inc.php:459 msgid "Explain SQL" msgstr "說明 SQL" @@ -1976,11 +1998,11 @@ msgstr "略過說明 SQL" msgid "Without PHP Code" msgstr "移除 PHP 程式碼" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:462 +#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:461 msgid "Create PHP Code" msgstr "建立 PHP 程式碼" -#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:461 +#: libraries/common.lib.php:1177 libraries/config/messages.inc.php:460 #: server_status.php:458 msgid "Refresh" msgstr "更新" @@ -1989,7 +2011,7 @@ msgstr "更新" msgid "Skip Validate SQL" msgstr "略過檢查 SQL" -#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:464 +#: libraries/common.lib.php:1189 libraries/config/messages.inc.php:463 msgid "Validate SQL" msgstr "檢查 SQL" @@ -2089,7 +2111,7 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2817 libraries/common.lib.php:2824 -#: libraries/config/messages.inc.php:210 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:209 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:46 libraries/tbl_links.inc.php:58 #: querywindow.php:88 test/theme.php:96 @@ -2113,14 +2135,14 @@ msgid "Select from the web server upload directory %s:" msgstr "Web 伺服器上載目錄" #: libraries/common.lib.php:2977 libraries/sql_query_form.lib.php:496 -#: tbl_change.php:926 +#: tbl_change.php:924 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上載目錄錯誤,未能使用" #: libraries/config.values.php:95 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 -#: libraries/import.lib.php:1153 +#: libraries/import.lib.php:1172 #, fuzzy msgid "structure" msgstr "結構" @@ -2251,7 +2273,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Restore default value" msgstr "" @@ -2261,15 +2283,15 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 -#: libraries/tbl_properties.inc.php:779 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:215 tbl_change.php:1026 tbl_indexes.php:246 +#: libraries/tbl_properties.inc.php:775 setup/frames/config.inc.php:39 +#: setup/frames/index.inc.php:215 tbl_change.php:1028 tbl_indexes.php:246 #: tbl_relation.php:563 msgid "Save" msgstr "儲存" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 main.php:138 -#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1075 +#: prefs_manage.php:320 prefs_manage.php:325 tbl_change.php:1077 msgid "Reset" msgstr "重設" @@ -2391,138 +2413,134 @@ msgid "Confirm DROP queries" msgstr "" #: libraries/config/messages.inc.php:42 -msgid "Field navigation using Ctrl+Arrows" -msgstr "" - -#: libraries/config/messages.inc.php:43 msgid "Debug SQL" msgstr "" -#: libraries/config/messages.inc.php:44 +#: libraries/config/messages.inc.php:43 #, fuzzy msgid "Default display direction" msgstr "資料庫輸出選項" -#: libraries/config/messages.inc.php:45 +#: libraries/config/messages.inc.php:44 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -#: libraries/config/messages.inc.php:46 +#: libraries/config/messages.inc.php:45 msgid "Display direction for altering/creating columns" msgstr "" -#: libraries/config/messages.inc.php:47 +#: libraries/config/messages.inc.php:46 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:48 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "更改資料庫名稱到" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:54 libraries/display_tbl.lib.php:597 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:597 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:55 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:58 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "編輯新一列" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:60 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "功能顯示" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:61 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:62 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:63 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:64 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:65 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:67 prefs_manage.php:299 +#: libraries/config/messages.inc.php:66 prefs_manage.php:299 msgid "Save as file" msgstr "下載儲存" -#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:67 libraries/config/messages.inc.php:234 #, fuzzy msgid "Character set of the file" msgstr "文字編碼檔案:" -#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:68 libraries/config/messages.inc.php:84 #: tbl_printview.php:373 tbl_structure.php:828 msgid "Format" msgstr "格式" -#: libraries/config/messages.inc.php:70 +#: libraries/config/messages.inc.php:69 msgid "Compression" msgstr "壓縮" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:78 -#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:90 -#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:105 -#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 -#: libraries/config/messages.inc.php:142 libraries/export/csv.php:27 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:77 +#: libraries/config/messages.inc.php:85 libraries/config/messages.inc.php:89 +#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:104 +#: libraries/config/messages.inc.php:136 libraries/config/messages.inc.php:139 +#: libraries/config/messages.inc.php:141 libraries/export/csv.php:27 #: libraries/export/excel.php:24 libraries/export/htmlword.php:29 #: libraries/export/latex.php:71 libraries/export/ods.php:24 #: libraries/export/odt.php:57 libraries/export/texytext.php:27 @@ -2532,71 +2550,71 @@ msgstr "壓縮" msgid "Put columns names in the first row" msgstr "將欄位名稱放在首行" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 -#: libraries/config/messages.inc.php:244 libraries/import/csv.php:73 +#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:243 libraries/import/csv.php:73 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "「欄位」使用字元:" -#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238 -#: libraries/config/messages.inc.php:245 libraries/import/csv.php:77 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:244 libraries/import/csv.php:77 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "「ESCAPE」使用字元:" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 -#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:96 -#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:138 libraries/config/messages.inc.php:141 -#: libraries/config/messages.inc.php:143 libraries/export/texytext.php:26 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:86 libraries/config/messages.inc.php:95 +#: libraries/config/messages.inc.php:103 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:137 libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:142 libraries/export/texytext.php:26 msgid "Replace NULL by" msgstr "將 NULL 取代為" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:80 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:61 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:248 libraries/import/csv.php:61 #: libraries/import/ldi.php:40 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "「下一行」使用字元:" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:235 #: libraries/import/csv.php:81 libraries/import/ldi.php:43 msgid "Lines terminated by" msgstr "「下一行」使用字元:" -#: libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:78 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel 版本" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:81 #, fuzzy msgid "Database name template" msgstr "檔案名稱樣式" -#: libraries/config/messages.inc.php:83 +#: libraries/config/messages.inc.php:82 #, fuzzy msgid "Server name template" msgstr "檔案名稱樣式" -#: libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Table name template" msgstr "檔案名稱樣式" -#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:101 -#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 libraries/export/htmlword.php:23 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:109 libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:138 libraries/export/htmlword.php:23 #: libraries/export/latex.php:39 libraries/export/odt.php:31 #: libraries/export/sql.php:77 libraries/export/texytext.php:22 #, fuzzy @@ -2604,407 +2622,407 @@ msgstr "檔案名稱樣式" msgid "Dump table" msgstr "%s 資料表" -#: libraries/config/messages.inc.php:89 libraries/export/latex.php:31 +#: libraries/config/messages.inc.php:88 libraries/export/latex.php:31 msgid "Include table caption" msgstr "包括資料表標題" -#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 +#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:97 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" msgstr "資料表標題" -#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:98 msgid "Continued table caption" msgstr "連續資料表標題" -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" msgstr "標記鍵名" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:107 -#: libraries/config/messages.inc.php:130 libraries/export/odt.php:325 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:129 libraries/export/odt.php:325 #: libraries/tbl_properties.inc.php:141 msgid "MIME type" msgstr "MIME 類型" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:132 tbl_relation.php:396 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:131 tbl_relation.php:396 msgid "Relations" msgstr "關聯" -#: libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:101 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "輸出方式" -#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 +#: libraries/config/messages.inc.php:110 libraries/config/messages.inc.php:112 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:113 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" msgstr "覆寫已存在檔案" -#: libraries/config/messages.inc.php:115 +#: libraries/config/messages.inc.php:114 #, fuzzy msgid "Remember file name template" msgstr "檔案名稱樣式" -#: libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:116 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "在資料表及欄位使用引號" -#: libraries/config/messages.inc.php:118 libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:351 msgid "SQL compatibility mode" msgstr "SQL 兼容模式" -#: libraries/config/messages.inc.php:119 +#: libraries/config/messages.inc.php:118 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:119 msgid "Creation/Update/Check dates" msgstr "建立/更新/檢查 日期" -#: libraries/config/messages.inc.php:121 +#: libraries/config/messages.inc.php:120 msgid "Use delayed inserts" msgstr "使用延遲式新增" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:53 +#: libraries/config/messages.inc.php:121 libraries/export/sql.php:53 msgid "Disable foreign key checks" msgstr "暫定外來鍵 (Foreign Key) 檢查" -#: libraries/config/messages.inc.php:125 +#: libraries/config/messages.inc.php:124 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:126 msgid "Use ignore inserts" msgstr "使用忽略加入 (insert)" -#: libraries/config/messages.inc.php:129 libraries/export/sql.php:163 +#: libraries/config/messages.inc.php:128 libraries/export/sql.php:163 msgid "Maximal length of created query" msgstr "建立之查詢最大長度" -#: libraries/config/messages.inc.php:134 +#: libraries/config/messages.inc.php:133 #, fuzzy msgid "Export type" msgstr "輸出方式" -#: libraries/config/messages.inc.php:135 libraries/export/sql.php:50 +#: libraries/config/messages.inc.php:134 libraries/export/sql.php:50 msgid "Enclose export in a transaction" msgstr "使用事務塊 (Transaction) 方式" -#: libraries/config/messages.inc.php:136 +#: libraries/config/messages.inc.php:135 #, fuzzy msgid "Export time in UTC" msgstr "輸出方式" -#: libraries/config/messages.inc.php:144 +#: libraries/config/messages.inc.php:143 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:145 +#: libraries/config/messages.inc.php:144 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:146 +#: libraries/config/messages.inc.php:145 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:147 +#: libraries/config/messages.inc.php:146 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:147 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:148 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:149 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:150 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:153 libraries/config/messages.inc.php:155 -#: libraries/config/messages.inc.php:172 libraries/config/messages.inc.php:183 -#: libraries/config/messages.inc.php:185 libraries/config/messages.inc.php:213 -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:152 libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:184 libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:224 #, fuzzy msgid "Customize default options" msgstr "資料庫輸出選項" -#: libraries/config/messages.inc.php:154 libraries/config/setup.forms.php:230 +#: libraries/config/messages.inc.php:153 libraries/config/setup.forms.php:230 #: libraries/config/setup.forms.php:309 -#: libraries/config/user_preferences.forms.php:135 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:16 +#: libraries/config/user_preferences.forms.php:134 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV 資料" -#: libraries/config/messages.inc.php:156 +#: libraries/config/messages.inc.php:155 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:156 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:158 +#: libraries/config/messages.inc.php:157 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:159 +#: libraries/config/messages.inc.php:158 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:160 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:161 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:163 libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:204 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:164 +#: libraries/config/messages.inc.php:163 #, fuzzy #| msgid "Generate" msgid "General" msgstr "產生" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:164 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:166 libraries/db_links.inc.php:83 +#: libraries/config/messages.inc.php:165 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82 #: pmd_pdf.php:81 pmd_pdf.php:107 prefs_manage.php:231 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "載入" -#: libraries/config/messages.inc.php:167 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "Import defaults" msgstr "輸入檔案" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:167 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:168 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:170 +#: libraries/config/messages.inc.php:169 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:171 libraries/export/latex.php:26 +#: libraries/config/messages.inc.php:170 libraries/export/latex.php:26 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:173 #, fuzzy msgid "Databases display options" msgstr "資料庫輸出選項" -#: libraries/config/messages.inc.php:175 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:174 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:176 +#: libraries/config/messages.inc.php:175 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:177 libraries/select_server.lib.php:42 +#: libraries/config/messages.inc.php:176 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:98 #, fuzzy msgid "Servers" msgstr "伺服器" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:177 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:179 libraries/export/xml.php:36 +#: libraries/config/messages.inc.php:178 libraries/export/xml.php:36 #: server_databases.php:128 server_status.php:377 msgid "Tables" msgstr "個資料表" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:179 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:181 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:180 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:181 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:183 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "說明文件" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:185 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:187 +#: libraries/config/messages.inc.php:186 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:187 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "頁碼:" -#: libraries/config/messages.inc.php:189 +#: libraries/config/messages.inc.php:188 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:189 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 #: libraries/navigation_header.inc.php:89 msgid "Query window" msgstr "查詢視窗" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:190 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:191 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:192 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:193 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:194 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "說明文件" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:195 #, fuzzy msgid "Authentication settings" msgstr "複製" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:196 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:197 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:198 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:199 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:200 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:201 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:202 msgid "Tracking of changes made in database. Requires configured PMA database." msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:203 #, fuzzy msgid "Customize export options" msgstr "資料庫輸出選項" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:205 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:206 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:207 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:209 libraries/config/messages.inc.php:214 +#: libraries/config/messages.inc.php:208 libraries/config/messages.inc.php:213 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL 語法" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:210 #, fuzzy msgid "SQL Query box" msgstr "SQL 語法" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:211 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:214 #, fuzzy msgid "SQL queries settings" msgstr "SQL 語法" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:215 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL 歷程" -#: libraries/config/messages.inc.php:217 +#: libraries/config/messages.inc.php:216 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3012,283 +3030,283 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "Startup" msgstr "狀態" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:218 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:219 #, fuzzy msgid "Tabs" msgstr "資料表" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:220 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:221 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "文字輸入" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Customize text input fields" msgstr "資料庫輸出選項" -#: libraries/config/messages.inc.php:224 libraries/export/texytext.php:17 +#: libraries/config/messages.inc.php:223 libraries/export/texytext.php:17 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:225 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:226 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:228 +#: libraries/config/messages.inc.php:227 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:228 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:229 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:230 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:231 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:232 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:233 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Ignore duplicate rows" msgstr "略過重覆列" -#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:248 +#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" msgstr "以檔案取代資料表資料" -#: libraries/config/messages.inc.php:242 +#: libraries/config/messages.inc.php:241 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:243 +#: libraries/config/messages.inc.php:242 msgid "Format of imported file" msgstr "載入檔案格式" -#: libraries/config/messages.inc.php:247 libraries/import/ldi.php:45 +#: libraries/config/messages.inc.php:246 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" msgstr "使用 LOCAL 關鍵字" -#: libraries/config/messages.inc.php:250 libraries/config/messages.inc.php:258 -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:249 libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:258 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "將欄位名稱放在首行" -#: libraries/config/messages.inc.php:251 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:250 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:251 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:253 +#: libraries/config/messages.inc.php:252 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:254 +#: libraries/config/messages.inc.php:253 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "開始時略過多少行記錄 (語法)" -#: libraries/config/messages.inc.php:255 +#: libraries/config/messages.inc.php:254 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "新增 AUTO_INCREMENT 數值" -#: libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:259 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:260 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:262 +#: libraries/config/messages.inc.php:261 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:262 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:263 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:264 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:265 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:266 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:267 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display table filter" msgstr "顯示欄位註解" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:268 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:269 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:270 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:271 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:272 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:273 #, fuzzy msgid "Use light version" msgstr "MySQL 客戶端版本" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:274 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:275 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:276 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:277 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:278 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:279 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:281 +#: libraries/config/messages.inc.php:280 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:281 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:282 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:283 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:284 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:285 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:286 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:287 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:289 +#: libraries/config/messages.inc.php:288 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:289 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:290 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:291 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, " @@ -3296,431 +3314,431 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:292 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:293 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:294 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:295 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:296 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:297 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:298 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:299 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:301 libraries/config/messages.inc.php:306 -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:300 libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:332 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:301 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:302 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:303 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:305 +#: libraries/config/messages.inc.php:304 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:307 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:307 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:308 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:309 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:310 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:312 +#: libraries/config/messages.inc.php:311 #, fuzzy msgid "Memory limit" msgstr "資源限制" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:312 msgid "Show left delete link" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:313 msgid "Show right delete link" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:314 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:315 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "根據欄位內容排序記錄" -#: libraries/config/messages.inc.php:317 libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:316 libraries/config/messages.inc.php:326 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:317 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:318 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 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:322 +#: libraries/config/messages.inc.php:321 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 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:326 +#: libraries/config/messages.inc.php:325 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 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:332 +#: libraries/config/messages.inc.php:331 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "查詢視窗" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "查詢視窗" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "查詢視窗" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "修復工作" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy msgid "Save directory" msgstr "資料主目錄" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 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:360 +#: libraries/config/messages.inc.php:359 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:362 setup/frames/index.inc.php:114 +#: libraries/config/messages.inc.php:361 setup/frames/index.inc.php:114 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 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:364 +#: libraries/config/messages.inc.php:363 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:368 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 #, fuzzy msgid "Connection type" msgstr "連線" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 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:373 +#: libraries/config/messages.inc.php:372 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 #, fuzzy msgid "Count tables" msgstr "沒有資料表" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Designer table" msgstr "整理資料表" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Hide databases" msgstr "沒有資料庫" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 #, fuzzy msgid "Server hostname" msgstr "伺服器名稱" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 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 " @@ -3729,302 +3747,302 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:393 libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:392 libraries/config/messages.inc.php:429 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 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:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "資料庫名稱" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:399 #, fuzzy msgid "Server port" msgstr "伺服器 ID" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 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:402 +#: libraries/config/messages.inc.php:401 #, fuzzy msgid "Relation table" msgstr "修復資料表" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Server socket" msgstr "選擇伺服器" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "顯示欄位註解" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 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:417 +#: libraries/config/messages.inc.php:416 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 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:419 +#: libraries/config/messages.inc.php:418 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 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:421 +#: libraries/config/messages.inc.php:420 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "敘述" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "自動修復模式" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 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:439 +#: libraries/config/messages.inc.php:438 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:440 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "顯示開啟資料表" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 #, fuzzy msgid "Show SQL queries" msgstr "顯示完整查詢" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 #, fuzzy msgid "Show statistics" msgstr "資料列統計數值" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4032,123 +4050,123 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Skip locked tables" msgstr "顯示開啟資料表" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 -#: libraries/replication_gui.lib.php:351 server_privileges.php:798 -#: server_privileges.php:802 server_privileges.php:813 -#: server_privileges.php:1620 server_synchronize.php:1173 +#: libraries/replication_gui.lib.php:351 server_privileges.php:797 +#: server_privileges.php:801 server_privileges.php:812 +#: server_privileges.php:1619 server_synchronize.php:1173 msgid "Password" msgstr "密碼" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:469 tbl_tracking.php:405 +#: libraries/config/messages.inc.php:468 tbl_tracking.php:405 #: tbl_tracking.php:456 #, fuzzy msgid "Username" msgstr "登入名稱:" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:469 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:470 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:471 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:472 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 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:475 +#: libraries/config/messages.inc.php:474 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "新增/減少 選擇欄" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 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:477 +#: libraries/config/messages.inc.php:476 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:480 +#: libraries/config/messages.inc.php:479 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "預設值" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 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-" @@ -4156,58 +4174,58 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:489 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:493 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:496 setup/frames/index.inc.php:229 +#: libraries/config/messages.inc.php:495 setup/frames/index.inc.php:229 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 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:498 +#: libraries/config/messages.inc.php:497 msgid "ZIP" msgstr "" @@ -4228,72 +4246,72 @@ msgid "Signon authentication" msgstr "" #: libraries/config/setup.forms.php:238 -#: libraries/config/user_preferences.forms.php:143 libraries/import/ldi.php:34 +#: libraries/config/user_preferences.forms.php:142 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" #: libraries/config/setup.forms.php:247 libraries/config/setup.forms.php:341 -#: libraries/config/user_preferences.forms.php:151 -#: libraries/config/user_preferences.forms.php:244 libraries/export/xls.php:17 +#: libraries/config/user_preferences.forms.php:150 +#: libraries/config/user_preferences.forms.php:243 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" #: libraries/config/setup.forms.php:250 libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:248 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:247 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" #: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:257 libraries/export/ods.php:17 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:256 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" #: libraries/config/setup.forms.php:260 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" #: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" #: libraries/config/setup.forms.php:285 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "資料庫輸出選項" #: libraries/config/setup.forms.php:298 libraries/config/setup.forms.php:334 #: libraries/config/setup.forms.php:365 libraries/config/setup.forms.php:370 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:268 -#: libraries/config/user_preferences.forms.php:273 -#: libraries/export/latex.php:215 libraries/export/sql.php:916 -#: server_databases.php:138 server_privileges.php:578 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:267 +#: libraries/config/user_preferences.forms.php:272 +#: libraries/export/latex.php:215 libraries/export/sql.php:933 +#: server_databases.php:138 server_privileges.php:577 #: server_replication.php:314 tbl_printview.php:314 tbl_structure.php:756 msgid "Data" msgstr "資料" #: libraries/config/setup.forms.php:318 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" #: libraries/config/setup.forms.php:349 -#: libraries/config/user_preferences.forms.php:252 +#: libraries/config/user_preferences.forms.php:251 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:358 -#: libraries/config/user_preferences.forms.php:261 libraries/export/odt.php:21 +#: libraries/config/user_preferences.forms.php:260 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4332,7 +4350,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/db_events.inc.php:19 libraries/db_events.inc.php:21 -#: libraries/export/sql.php:463 +#: libraries/export/sql.php:481 msgid "Events" msgstr "" @@ -4361,8 +4379,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64 -#: server_privileges.php:113 server_privileges.php:1814 -#: server_privileges.php:2164 test/theme.php:116 +#: server_privileges.php:112 server_privileges.php:1813 +#: server_privileges.php:2163 test/theme.php:116 msgid "Privileges" msgstr "權限" @@ -4374,7 +4392,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1849 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1855 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4403,18 +4421,18 @@ msgid "Details..." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:90 -#: user_password.php:120 user_password.php:138 +#: user_password.php:119 user_password.php:137 msgid "Change password" msgstr "更改密碼" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:347 server_privileges.php:809 +#: libraries/replication_gui.lib.php:347 server_privileges.php:808 msgid "No Password" msgstr "不用密碼" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 -#: server_privileges.php:817 server_privileges.php:820 +#: server_privileges.php:816 server_privileges.php:819 msgid "Re-type" msgstr "確認密碼" @@ -4437,8 +4455,8 @@ msgstr "建立新資料庫" msgid "Create" msgstr "建立" -#: libraries/display_create_database.lib.php:39 server_privileges.php:115 -#: server_privileges.php:1505 server_replication.php:33 +#: libraries/display_create_database.lib.php:39 server_privileges.php:114 +#: server_privileges.php:1504 server_replication.php:33 msgid "No Privileges" msgstr "沒有權限" @@ -4576,8 +4594,8 @@ msgid "Compression:" msgstr "壓縮" #: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:528 -#: libraries/export/sql.php:916 libraries/tbl_properties.inc.php:578 -#: server_privileges.php:1967 server_processlist.php:74 +#: libraries/export/sql.php:933 libraries/tbl_properties.inc.php:578 +#: server_privileges.php:1966 server_processlist.php:74 msgid "None" msgstr "不適用" @@ -4740,7 +4758,7 @@ msgstr "依鍵名排序" #: libraries/export/sql.php:55 libraries/export/texytext.php:30 #: libraries/export/xls.php:28 libraries/export/xlsx.php:28 #: libraries/export/xml.php:25 libraries/export/yaml.php:29 -#: libraries/import.lib.php:1126 libraries/import.lib.php:1148 +#: libraries/import.lib.php:1145 libraries/import.lib.php:1167 #: libraries/import/csv.php:32 libraries/import/docsql.php:34 #: libraries/import/ldi.php:48 libraries/import/ods.php:32 #: libraries/import/sql.php:19 libraries/import/xls.php:27 @@ -4777,8 +4795,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:308 -#: tbl_change.php:314 +#: libraries/display_tbl.lib.php:605 pmd_general.php:140 tbl_change.php:306 +#: tbl_change.php:312 msgid "Hide" msgstr "" @@ -4796,49 +4814,49 @@ msgstr "執行書籤查詢" msgid "The row has been deleted" msgstr "記錄已被刪除" -#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2057 +#: libraries/display_tbl.lib.php:1185 libraries/display_tbl.lib.php:2063 #: server_processlist.php:70 tbl_row_action.php:63 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1935 +#: libraries/display_tbl.lib.php:1941 msgid "in query" msgstr "查詢中" -#: libraries/display_tbl.lib.php:1953 +#: libraries/display_tbl.lib.php:1959 msgid "Showing rows" msgstr "顯示記錄" -#: libraries/display_tbl.lib.php:1963 +#: libraries/display_tbl.lib.php:1969 msgid "total" msgstr "總計" -#: libraries/display_tbl.lib.php:1971 sql.php:597 +#: libraries/display_tbl.lib.php:1977 sql.php:597 #, php-format msgid "Query took %01.4f sec" msgstr "查詢需時 %01.4f 秒" -#: libraries/display_tbl.lib.php:2090 libraries/mult_submits.inc.php:112 +#: libraries/display_tbl.lib.php:2096 libraries/mult_submits.inc.php:112 #: querywindow.php:114 querywindow.php:118 querywindow.php:121 #: tbl_structure.php:24 tbl_structure.php:149 tbl_structure.php:560 msgid "Change" msgstr "修改" -#: libraries/display_tbl.lib.php:2160 +#: libraries/display_tbl.lib.php:2166 msgid "Query results operations" msgstr "查詢結果操作" -#: libraries/display_tbl.lib.php:2188 +#: libraries/display_tbl.lib.php:2194 msgid "Print view (with full texts)" msgstr "列印檢視 (顯示完整文字)" -#: libraries/display_tbl.lib.php:2232 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2238 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "顯示 PDF 概要" -#: libraries/display_tbl.lib.php:2383 +#: libraries/display_tbl.lib.php:2389 msgid "Link not found" msgstr "找不到連結" @@ -5269,12 +5287,12 @@ msgid "Data dump options" msgstr "資料庫輸出選項" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 -#: libraries/export/sql.php:929 libraries/export/texytext.php:123 +#: libraries/export/sql.php:946 libraries/export/texytext.php:123 msgid "Dumping data for table" msgstr "列出以下資料庫的數據:" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 -#: libraries/export/sql.php:833 libraries/export/texytext.php:170 +#: libraries/export/sql.php:850 libraries/export/texytext.php:170 msgid "Table structure for table" msgstr "資料表格式:" @@ -5331,9 +5349,9 @@ msgstr "可使用 MIME 類型" #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 #: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176 #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 -#: libraries/replication_gui.lib.php:331 server_privileges.php:733 -#: server_privileges.php:736 server_privileges.php:792 -#: server_privileges.php:1619 server_privileges.php:2162 +#: libraries/replication_gui.lib.php:331 server_privileges.php:732 +#: server_privileges.php:735 server_privileges.php:791 +#: server_privileges.php:1618 server_privileges.php:2161 #: server_processlist.php:54 server_synchronize.php:1157 msgid "Host" msgstr "主機" @@ -5479,43 +5497,43 @@ msgid "" "reloaded between servers in different time zones)" msgstr "" -#: libraries/export/sql.php:435 libraries/export/xml.php:34 +#: libraries/export/sql.php:393 libraries/export/xml.php:34 #, fuzzy msgid "Procedures" msgstr "處理" -#: libraries/export/sql.php:449 libraries/export/xml.php:32 +#: libraries/export/sql.php:407 libraries/export/xml.php:32 #, fuzzy msgid "Functions" msgstr "函數" -#: libraries/export/sql.php:666 +#: libraries/export/sql.php:683 msgid "Constraints for dumped tables" msgstr "備份資料表限制" -#: libraries/export/sql.php:675 +#: libraries/export/sql.php:692 msgid "Constraints for table" msgstr "資料表限制" -#: libraries/export/sql.php:775 +#: libraries/export/sql.php:792 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:787 +#: libraries/export/sql.php:804 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:844 libraries/export/xml.php:38 +#: libraries/export/sql.php:861 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:856 +#: libraries/export/sql.php:873 #, fuzzy msgid "Structure for view" msgstr "只有結構" -#: libraries/export/sql.php:865 +#: libraries/export/sql.php:882 msgid "Stand-in structure for view" msgstr "" @@ -5550,43 +5568,43 @@ msgstr "SQL 查詢結果" msgid "Generated by" msgstr "建立" -#: libraries/import.lib.php:151 sql.php:593 tbl_change.php:176 +#: libraries/import.lib.php:153 sql.php:593 tbl_change.php:176 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 傳回的查詢結果為空 (原因可能為:沒有找到符合條件的記錄)" -#: libraries/import.lib.php:1122 +#: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1123 +#: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1124 +#: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1125 +#: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1128 +#: libraries/import.lib.php:1147 #, fuzzy msgid "Go to database" msgstr "沒有資料庫" -#: libraries/import.lib.php:1131 libraries/import.lib.php:1155 +#: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" msgstr "" -#: libraries/import.lib.php:1150 +#: libraries/import.lib.php:1169 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1159 +#: libraries/import.lib.php:1178 msgid "Go to view" msgstr "" @@ -5638,7 +5656,7 @@ msgstr "CSV 檔案第 %d 行中之欄位總數錯誤." msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:621 +#: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:426 server_synchronize.php:869 #, fuzzy msgid "Table name" @@ -5718,7 +5736,7 @@ msgid "Charset" msgstr "文字編碼 (Charset)" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:511 +#: tbl_change.php:509 msgid "Binary" msgstr "二進制碼" @@ -6002,8 +6020,8 @@ msgstr "" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 -#: libraries/replication_gui.lib.php:261 server_privileges.php:713 -#: server_privileges.php:716 server_privileges.php:723 +#: libraries/replication_gui.lib.php:261 server_privileges.php:712 +#: server_privileges.php:715 server_privileges.php:722 #: server_synchronize.php:1169 msgid "User name" msgstr "使用者名稱" @@ -6023,7 +6041,7 @@ msgid "Variable" msgstr "資訊" #: libraries/replication_gui.lib.php:117 server_status.php:751 -#: tbl_change.php:318 tbl_printview.php:367 tbl_select.php:136 +#: tbl_change.php:316 tbl_printview.php:367 tbl_select.php:136 #: tbl_structure.php:820 msgid "Value" msgstr "值" @@ -6042,34 +6060,34 @@ msgstr "" msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:256 server_privileges.php:718 +#: libraries/replication_gui.lib.php:256 server_privileges.php:717 msgid "Any user" msgstr "任何使用者" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 -#: libraries/replication_gui.lib.php:348 server_privileges.php:719 -#: server_privileges.php:786 server_privileges.php:810 -#: server_privileges.php:2020 server_privileges.php:2050 +#: libraries/replication_gui.lib.php:348 server_privileges.php:718 +#: server_privileges.php:785 server_privileges.php:809 +#: server_privileges.php:2019 server_privileges.php:2049 msgid "Use text field" msgstr "文字輸入" -#: libraries/replication_gui.lib.php:304 server_privileges.php:766 +#: libraries/replication_gui.lib.php:304 server_privileges.php:765 msgid "Any host" msgstr "任何主機" -#: libraries/replication_gui.lib.php:308 server_privileges.php:770 +#: libraries/replication_gui.lib.php:308 server_privileges.php:769 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:314 server_privileges.php:775 +#: libraries/replication_gui.lib.php:314 server_privileges.php:774 msgid "This Host" msgstr "指定主機" -#: libraries/replication_gui.lib.php:320 server_privileges.php:781 +#: libraries/replication_gui.lib.php:320 server_privileges.php:780 msgid "Use Host Table" msgstr "使用主機資料表" -#: libraries/replication_gui.lib.php:333 server_privileges.php:794 +#: libraries/replication_gui.lib.php:333 server_privileges.php:793 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -6323,11 +6341,11 @@ msgstr "在資料庫 %s 執行以下指令" msgid "Columns" msgstr "欄位名稱" -#: libraries/sql_query_form.lib.php:332 sql.php:843 sql.php:844 sql.php:861 +#: libraries/sql_query_form.lib.php:332 sql.php:846 sql.php:847 sql.php:864 msgid "Bookmark this SQL query" msgstr "將此 SQL 語法加入書籤" -#: libraries/sql_query_form.lib.php:339 sql.php:855 +#: libraries/sql_query_form.lib.php:339 sql.php:858 msgid "Let every user access this bookmark" msgstr "所有用者可讀取此書籤" @@ -6359,7 +6377,7 @@ msgstr "查看" msgid "Location of the text file" msgstr "文字檔案的位置" -#: libraries/sql_query_form.lib.php:499 tbl_change.php:929 +#: libraries/sql_query_form.lib.php:499 tbl_change.php:927 msgid "web server upload directory" msgstr "Web 伺服器上載目錄" @@ -6512,22 +6530,22 @@ msgid "" "author what %s does." msgstr "這個轉換方式沒有說明.
請向作者查詢 %s 是甚麼用途." -#: libraries/tbl_properties.inc.php:729 server_engines.php:56 +#: libraries/tbl_properties.inc.php:725 server_engines.php:56 #: tbl_operations.php:352 msgid "Storage Engine" msgstr "儲存引擎" -#: libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:754 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:783 tbl_structure.php:632 +#: libraries/tbl_properties.inc.php:779 tbl_structure.php:632 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "新增 %s 個欄位" -#: libraries/tbl_properties.inc.php:787 tbl_structure.php:626 +#: libraries/tbl_properties.inc.php:783 tbl_structure.php:626 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -6747,8 +6765,8 @@ msgstr "一般關聯功能" msgid "Protocol version" msgstr "通訊協定版本" -#: main.php:170 server_privileges.php:1464 server_privileges.php:1618 -#: server_privileges.php:1742 server_privileges.php:2161 +#: main.php:170 server_privileges.php:1463 server_privileges.php:1617 +#: server_privileges.php:1741 server_privileges.php:2160 #: server_processlist.php:53 msgid "User" msgstr "使用者" @@ -6786,7 +6804,7 @@ msgstr "phpMyAdmin 官方網站" msgid "Mailing lists" msgstr "" -#: main.php:247 +#: main.php:246 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -6796,7 +6814,7 @@ msgstr "" "設定檔內有關設定 (root登入及沒有密碼) 與預設的 MySQL 權限戶口相同。 MySQL 伺" "服器在這預設的設定運行的話會很容易被入侵,您應更改有關設定去防止安全漏洞。" -#: main.php:255 +#: main.php:254 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -6805,7 +6823,7 @@ msgstr "" "你在 PHP 設定內啟動了 mbstring.func_overload 選項, 這個選項暫時不兼容 " "phpMyAdmin , 你可能會損失部份資料!" -#: main.php:263 +#: main.php:262 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -6814,7 +6832,7 @@ msgstr "" "找不到 PHP 內的 mbstring 編碼模組, 沒有這個模組, phpMyAdmin 無法準確地分割雙" "字元文字, 而可能產生問題." -#: main.php:271 +#: main.php:270 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -6822,39 +6840,39 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: main.php:279 +#: main.php:278 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "設定檔案現在需要密碼 (passphrase) (blowfish_secret)." -#: main.php:287 +#: main.php:286 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: main.php:296 +#: main.php:295 #, php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因." -#: main.php:311 +#: main.php:310 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: main.php:326 +#: main.php:325 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: main.php:338 +#: main.php:337 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -7188,168 +7206,168 @@ msgstr "儲存引擎" msgid "View dump (schema) of databases" msgstr "顯示資料庫概要 (schema)" -#: server_privileges.php:26 server_privileges.php:268 +#: server_privileges.php:25 server_privileges.php:267 msgid "Includes all privileges except GRANT." msgstr "包括所有權限除了授權 (GRNANT)." -#: server_privileges.php:27 server_privileges.php:194 -#: server_privileges.php:517 +#: server_privileges.php:26 server_privileges.php:193 +#: server_privileges.php:516 msgid "Allows altering the structure of existing tables." msgstr "容許修改現有資料表的結構." -#: server_privileges.php:28 server_privileges.php:210 -#: server_privileges.php:523 +#: server_privileges.php:27 server_privileges.php:209 +#: server_privileges.php:522 msgid "Allows altering and dropping stored routines." msgstr "容許修改及刪除儲存程序." -#: server_privileges.php:29 server_privileges.php:186 -#: server_privileges.php:516 +#: server_privileges.php:28 server_privileges.php:185 +#: server_privileges.php:515 msgid "Allows creating new databases and tables." msgstr "容許建立新資料庫及資料表." -#: server_privileges.php:30 server_privileges.php:209 -#: server_privileges.php:522 +#: server_privileges.php:29 server_privileges.php:208 +#: server_privileges.php:521 msgid "Allows creating stored routines." msgstr "容許建立儲存程序" -#: server_privileges.php:31 server_privileges.php:516 +#: server_privileges.php:30 server_privileges.php:515 msgid "Allows creating new tables." msgstr "容許建立新資料表." -#: server_privileges.php:32 server_privileges.php:197 -#: server_privileges.php:520 +#: server_privileges.php:31 server_privileges.php:196 +#: server_privileges.php:519 msgid "Allows creating temporary tables." msgstr "容許建立暫時性資料表." -#: server_privileges.php:33 server_privileges.php:211 -#: server_privileges.php:556 +#: server_privileges.php:32 server_privileges.php:210 +#: server_privileges.php:555 msgid "Allows creating, dropping and renaming user accounts." msgstr "容許建立、刪除及重新命名使用者戶口." -#: server_privileges.php:34 server_privileges.php:201 -#: server_privileges.php:205 server_privileges.php:528 -#: server_privileges.php:532 +#: server_privileges.php:33 server_privileges.php:200 +#: server_privileges.php:204 server_privileges.php:527 +#: server_privileges.php:531 msgid "Allows creating new views." msgstr "容許建立新的檢視." -#: server_privileges.php:35 server_privileges.php:185 -#: server_privileges.php:508 +#: server_privileges.php:34 server_privileges.php:184 +#: server_privileges.php:507 msgid "Allows deleting data." msgstr "容許刪除記錄." -#: server_privileges.php:36 server_privileges.php:187 -#: server_privileges.php:519 +#: server_privileges.php:35 server_privileges.php:186 +#: server_privileges.php:518 msgid "Allows dropping databases and tables." msgstr "容許刪除資料庫及資料表." -#: server_privileges.php:37 server_privileges.php:519 +#: server_privileges.php:36 server_privileges.php:518 msgid "Allows dropping tables." msgstr "容許刪除資料表." -#: server_privileges.php:38 server_privileges.php:202 -#: server_privileges.php:536 +#: server_privileges.php:37 server_privileges.php:201 +#: server_privileges.php:535 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:39 server_privileges.php:212 -#: server_privileges.php:524 +#: server_privileges.php:38 server_privileges.php:211 +#: server_privileges.php:523 msgid "Allows executing stored routines." msgstr "容許執行儲存程序." -#: server_privileges.php:40 server_privileges.php:191 -#: server_privileges.php:511 +#: server_privileges.php:39 server_privileges.php:190 +#: server_privileges.php:510 msgid "Allows importing data from and exporting data into files." msgstr "容許輸入及輸出數據到檔案." -#: server_privileges.php:41 server_privileges.php:542 +#: server_privileges.php:40 server_privileges.php:541 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "容許新增使用者及權限而無需重新讀取權限資料表." -#: server_privileges.php:42 server_privileges.php:193 -#: server_privileges.php:518 +#: server_privileges.php:41 server_privileges.php:192 +#: server_privileges.php:517 msgid "Allows creating and dropping indexes." msgstr "容許建立及刪除索引." -#: server_privileges.php:43 server_privileges.php:183 -#: server_privileges.php:444 server_privileges.php:506 +#: server_privileges.php:42 server_privileges.php:182 +#: server_privileges.php:443 server_privileges.php:505 msgid "Allows inserting and replacing data." msgstr "容許新增及取代數據." -#: server_privileges.php:44 server_privileges.php:198 -#: server_privileges.php:551 +#: server_privileges.php:43 server_privileges.php:197 +#: server_privileges.php:550 msgid "Allows locking tables for the current thread." msgstr "容許鎖上現時連線之資料表." -#: server_privileges.php:45 server_privileges.php:648 -#: server_privileges.php:650 +#: server_privileges.php:44 server_privileges.php:647 +#: server_privileges.php:649 msgid "Limits the number of new connections the user may open per hour." msgstr "限制每小時使用者開啟新連線的數目." -#: server_privileges.php:46 server_privileges.php:636 -#: server_privileges.php:638 +#: server_privileges.php:45 server_privileges.php:635 +#: server_privileges.php:637 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制每小時使用者查詢的數目." -#: server_privileges.php:47 server_privileges.php:642 -#: server_privileges.php:644 +#: server_privileges.php:46 server_privileges.php:641 +#: server_privileges.php:643 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制每小時使用者更改資料表及數據表之指令的數目." -#: server_privileges.php:48 server_privileges.php:654 -#: server_privileges.php:656 +#: server_privileges.php:47 server_privileges.php:653 +#: server_privileges.php:655 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制每個使用者之同步連線." -#: server_privileges.php:49 server_privileges.php:190 -#: server_privileges.php:546 +#: server_privileges.php:48 server_privileges.php:189 +#: server_privileges.php:545 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:50 server_privileges.php:192 -#: server_privileges.php:450 server_privileges.php:552 +#: server_privileges.php:49 server_privileges.php:191 +#: server_privileges.php:449 server_privileges.php:551 msgid "Has no effect in this MySQL version." msgstr "於本 MySQL 版本無效." -#: server_privileges.php:51 server_privileges.php:188 -#: server_privileges.php:547 +#: server_privileges.php:50 server_privileges.php:187 +#: server_privileges.php:546 msgid "Allows reloading server settings and flushing the server's caches." msgstr "容許重新讀取伺服器設定及強行更新伺服器快取記憶." -#: server_privileges.php:52 server_privileges.php:200 -#: server_privileges.php:554 +#: server_privileges.php:51 server_privileges.php:199 +#: server_privileges.php:553 msgid "Allows the user to ask where the slaves / masters are." msgstr "容許用戶查詢 slaves / masters 在何處." -#: server_privileges.php:53 server_privileges.php:199 -#: server_privileges.php:555 +#: server_privileges.php:52 server_privileges.php:198 +#: server_privileges.php:554 msgid "Needed for the replication slaves." msgstr "需要複製的 slaves." -#: server_privileges.php:54 server_privileges.php:182 -#: server_privileges.php:441 server_privileges.php:505 +#: server_privileges.php:53 server_privileges.php:181 +#: server_privileges.php:440 server_privileges.php:504 msgid "Allows reading data." msgstr "容許讀取數據." -#: server_privileges.php:55 server_privileges.php:195 -#: server_privileges.php:549 +#: server_privileges.php:54 server_privileges.php:194 +#: server_privileges.php:548 msgid "Gives access to the complete list of databases." msgstr "可讀取整個資料庫清單." -#: server_privileges.php:56 server_privileges.php:206 -#: server_privileges.php:208 server_privileges.php:521 +#: server_privileges.php:55 server_privileges.php:205 +#: server_privileges.php:207 server_privileges.php:520 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "容許執行 SHOW CREATE VIEW 查詢." -#: server_privileges.php:57 server_privileges.php:189 -#: server_privileges.php:548 +#: server_privileges.php:56 server_privileges.php:188 +#: server_privileges.php:547 msgid "Allows shutting down the server." msgstr "容許停止伺服器." -#: server_privileges.php:58 server_privileges.php:196 -#: server_privileges.php:545 +#: server_privileges.php:57 server_privileges.php:195 +#: server_privileges.php:544 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -7358,158 +7376,158 @@ msgstr "" "容許連線, 就算超過了最大連線限制; 用於最高系統管理如設定整體權限或中止其他使" "用者指令." -#: server_privileges.php:59 server_privileges.php:203 -#: server_privileges.php:537 +#: server_privileges.php:58 server_privileges.php:202 +#: server_privileges.php:536 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "容許建立及刪除索引." -#: server_privileges.php:60 server_privileges.php:184 -#: server_privileges.php:447 server_privileges.php:507 +#: server_privileges.php:59 server_privileges.php:183 +#: server_privileges.php:446 server_privileges.php:506 msgid "Allows changing data." msgstr "容許更新數據." -#: server_privileges.php:61 server_privileges.php:262 +#: server_privileges.php:60 server_privileges.php:261 msgid "No privileges." msgstr "沒有權限." -#: server_privileges.php:304 server_privileges.php:305 +#: server_privileges.php:303 server_privileges.php:304 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "不適用" -#: server_privileges.php:433 server_privileges.php:568 -#: server_privileges.php:1810 server_privileges.php:1816 +#: server_privileges.php:432 server_privileges.php:567 +#: server_privileges.php:1809 server_privileges.php:1815 msgid "Table-specific privileges" msgstr "指定資料表權限" -#: server_privileges.php:434 server_privileges.php:576 -#: server_privileges.php:1622 +#: server_privileges.php:433 server_privileges.php:575 +#: server_privileges.php:1621 msgid " Note: MySQL privilege names are expressed in English " msgstr "注意: MySQL 權限名稱會以英語顯示" -#: server_privileges.php:565 server_privileges.php:1621 +#: server_privileges.php:564 server_privileges.php:1620 msgid "Global privileges" msgstr "整體權限" -#: server_privileges.php:567 server_privileges.php:1810 +#: server_privileges.php:566 server_privileges.php:1809 msgid "Database-specific privileges" msgstr "指定資料庫權限" -#: server_privileges.php:612 +#: server_privileges.php:611 msgid "Administration" msgstr "系統管理" -#: server_privileges.php:632 +#: server_privileges.php:631 msgid "Resource limits" msgstr "資源限制" -#: server_privileges.php:633 +#: server_privileges.php:632 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "註: 設定這些選項為 0 (零) 可解除限制." -#: server_privileges.php:710 +#: server_privileges.php:709 msgid "Login Information" msgstr "登入資訊" -#: server_privileges.php:804 +#: server_privileges.php:803 msgid "Do not change the password" msgstr "請不要更改密碼" -#: server_privileges.php:837 server_privileges.php:2298 +#: server_privileges.php:836 server_privileges.php:2297 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "找不到使用者" -#: server_privileges.php:881 +#: server_privileges.php:880 #, php-format msgid "The user %s already exists!" msgstr "使用者 %s 己存在!" -#: server_privileges.php:964 +#: server_privileges.php:963 msgid "You have added a new user." msgstr "您已新增了一個新使用者." -#: server_privileges.php:1194 +#: server_privileges.php:1193 #, php-format msgid "You have updated the privileges for %s." msgstr "您已經更新了 %s 的權限." -#: server_privileges.php:1218 +#: server_privileges.php:1217 #, php-format msgid "You have revoked the privileges for %s" msgstr "您已移除這位使用者的權限: %s" -#: server_privileges.php:1254 +#: server_privileges.php:1253 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密碼已成功更改." -#: server_privileges.php:1274 +#: server_privileges.php:1273 #, php-format msgid "Deleting %s" msgstr "刪除 %s" -#: server_privileges.php:1288 +#: server_privileges.php:1287 msgid "No users selected for deleting!" msgstr "並未選擇需要刪除之使用者!" -#: server_privileges.php:1291 +#: server_privileges.php:1290 msgid "Reloading the privileges" msgstr "重新讀取權限" -#: server_privileges.php:1309 +#: server_privileges.php:1308 msgid "The selected users have been deleted successfully." msgstr "選擇的使用者已成功刪除." -#: server_privileges.php:1344 +#: server_privileges.php:1343 msgid "The privileges were reloaded successfully." msgstr "權限已成功重新讀取." -#: server_privileges.php:1355 server_privileges.php:1741 +#: server_privileges.php:1354 server_privileges.php:1740 msgid "Edit Privileges" msgstr "編輯權限" -#: server_privileges.php:1364 +#: server_privileges.php:1363 msgid "Revoke" msgstr "移除" -#: server_privileges.php:1391 server_privileges.php:1642 -#: server_privileges.php:2255 +#: server_privileges.php:1390 server_privileges.php:1641 +#: server_privileges.php:2254 msgid "Any" msgstr "任何" -#: server_privileges.php:1482 +#: server_privileges.php:1481 msgid "User overview" msgstr "使用者一覽" -#: server_privileges.php:1623 server_privileges.php:1815 -#: server_privileges.php:2165 +#: server_privileges.php:1622 server_privileges.php:1814 +#: server_privileges.php:2164 msgid "Grant" msgstr "授權" -#: server_privileges.php:1691 server_privileges.php:1715 -#: server_privileges.php:2120 server_privileges.php:2309 +#: server_privileges.php:1690 server_privileges.php:1714 +#: server_privileges.php:2119 server_privileges.php:2308 msgid "Add a new User" msgstr "新增使用者" -#: server_privileges.php:1696 +#: server_privileges.php:1695 msgid "Remove selected users" msgstr "移除已選擇使用者" -#: server_privileges.php:1699 +#: server_privileges.php:1698 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "廢除使用者所有有效之權限並刪除." -#: server_privileges.php:1700 server_privileges.php:1701 -#: server_privileges.php:1702 +#: server_privileges.php:1699 server_privileges.php:1700 +#: server_privileges.php:1701 msgid "Drop the databases that have the same names as the users." msgstr "刪除與使用者相同名稱之資料庫." -#: server_privileges.php:1723 +#: server_privileges.php:1722 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -7521,91 +7539,91 @@ msgstr "" "表, 資料表內容將可能與實際使用者情況有異. 在這情況下, 您應在繼續前 %s重新載" "入%s 權限資料表." -#: server_privileges.php:1776 +#: server_privileges.php:1775 msgid "The selected user was not found in the privilege table." msgstr "選擇的使用者在權限資料表內找不到." -#: server_privileges.php:1816 +#: server_privileges.php:1815 msgid "Column-specific privileges" msgstr "指定欄位權限" -#: server_privileges.php:2017 +#: server_privileges.php:2016 msgid "Add privileges on the following database" msgstr "於以下資料庫加入權限" -#: server_privileges.php:2035 +#: server_privileges.php:2034 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "萬用符號 _ 及 % 應正確地加入 \\ " -#: server_privileges.php:2038 +#: server_privileges.php:2037 msgid "Add privileges on the following table" msgstr "於以下資料表加入權限" -#: server_privileges.php:2095 +#: server_privileges.php:2094 msgid "Change Login Information / Copy User" msgstr "更改登入資訊 / 複製使用者" -#: server_privileges.php:2098 +#: server_privileges.php:2097 msgid "Create a new user with the same privileges and ..." msgstr "建立新使用者及使用相同之權限, 及 ..." -#: server_privileges.php:2100 +#: server_privileges.php:2099 msgid "... keep the old one." msgstr "... 保留舊使用者." -#: server_privileges.php:2101 +#: server_privileges.php:2100 msgid " ... delete the old one from the user tables." msgstr " ... 刪除舊使用者." -#: server_privileges.php:2102 +#: server_privileges.php:2101 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... 廢除所有舊使用者有效之權限並刪除." -#: server_privileges.php:2103 +#: server_privileges.php:2102 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... 刪除舊使用者及重新讀取權限資料表." -#: server_privileges.php:2126 +#: server_privileges.php:2125 msgid "Database for user" msgstr "" -#: server_privileges.php:2130 +#: server_privileges.php:2129 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "不適用" -#: server_privileges.php:2131 +#: server_privileges.php:2130 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2132 +#: server_privileges.php:2131 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2135 +#: server_privileges.php:2134 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "查詢資料庫 "%s" 之權限." -#: server_privileges.php:2158 +#: server_privileges.php:2157 #, php-format msgid "Users having access to "%s"" msgstr "可讀取 "%s" 之使用者" -#: server_privileges.php:2266 +#: server_privileges.php:2265 msgid "global" msgstr "整體" -#: server_privileges.php:2268 +#: server_privileges.php:2267 msgid "database-specific" msgstr "指定資料庫" -#: server_privileges.php:2270 +#: server_privileges.php:2269 msgid "wildcard" msgstr "萬用字元" @@ -8495,7 +8513,7 @@ msgstr "" msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:75 +#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." @@ -8905,12 +8923,12 @@ msgstr "" msgid "Validated SQL" msgstr "檢查 SQL" -#: sql.php:817 +#: sql.php:820 #, php-format msgid "Problems with indexes of table `%s`" msgstr "於資料表 `%s` 中有索引問題" -#: sql.php:849 +#: sql.php:852 msgid "Label" msgstr "書籤名稱" @@ -8919,71 +8937,71 @@ msgstr "書籤名稱" msgid "Table %1$s has been altered successfully" msgstr "選擇的使用者已成功刪除." -#: tbl_change.php:246 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 +#: tbl_change.php:244 tbl_select.php:25 tbl_select.php:26 tbl_select.php:29 #: tbl_select.php:32 msgid "Browse foreign values" msgstr "瀏覽外來值" -#: tbl_change.php:276 tbl_change.php:314 +#: tbl_change.php:274 tbl_change.php:312 msgid "Function" msgstr "函數" -#: tbl_change.php:724 +#: tbl_change.php:722 #, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " 由於長度限制
此欄位不能編輯 " -#: tbl_change.php:839 +#: tbl_change.php:837 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:845 +#: tbl_change.php:843 msgid "Binary - do not edit" msgstr "二進制碼 - 不能編輯" -#: tbl_change.php:893 +#: tbl_change.php:891 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:1030 +#: tbl_change.php:1032 msgid "Insert as new row" msgstr "儲存為新記錄" -#: tbl_change.php:1031 +#: tbl_change.php:1033 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:1032 +#: tbl_change.php:1034 msgid "Show insert query" msgstr "" -#: tbl_change.php:1043 +#: tbl_change.php:1045 msgid "and then" msgstr "然後" -#: tbl_change.php:1047 +#: tbl_change.php:1049 msgid "Go back to previous page" msgstr "返回" -#: tbl_change.php:1048 +#: tbl_change.php:1050 msgid "Insert another new row" msgstr "新增一筆記錄" -#: tbl_change.php:1052 +#: tbl_change.php:1054 msgid "Go back to this page" msgstr "返回這頁" -#: tbl_change.php:1060 +#: tbl_change.php:1062 msgid "Edit next row" msgstr "編輯新一列" -#: tbl_change.php:1071 +#: tbl_change.php:1073 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 鍵跳到下一個數值, 或 CTRL+方向鍵 作隨意移動" -#: tbl_change.php:1109 +#: tbl_change.php:1111 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -9091,12 +9109,12 @@ msgstr "" msgid "Redraw" msgstr "" -#: tbl_create.php:55 +#: tbl_create.php:56 #, php-format msgid "Table %s already exists!" msgstr "資料表 %s 已存在!" -#: tbl_create.php:241 +#: tbl_create.php:242 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "資料表 %s 已被刪除" @@ -9589,11 +9607,11 @@ msgctxt "for MIME transformation" msgid "Description" msgstr "說明" -#: user_password.php:49 +#: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" msgstr "您現在沒有足夠的權限!" -#: user_password.php:111 +#: user_password.php:110 msgid "The profile has been updated." msgstr "資料己經更新." diff --git a/server_privileges.php b/server_privileges.php index 710151ef34..abb65cbcc7 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -17,7 +17,6 @@ $GLOBALS['js_include'][] = 'server_privileges.js'; $GLOBALS['js_include'][] = 'functions.js'; $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; -$GLOBALS['js_include'][] = 'password_generation.js'; require './libraries/server_common.inc.php'; /** diff --git a/sql.php b/sql.php index 698ca8a522..898c8935ea 100644 --- a/sql.php +++ b/sql.php @@ -677,7 +677,10 @@ if (0 == $num_rows || $is_affected) { if(isset($GLOBALS['display_query'])) { $extra_data['sql_query'] = PMA_showMessage(NULL, $GLOBALS['display_query']); } - + if ($GLOBALS['reload'] == 1) { + $extra_data['reload'] = 1; + $extra_data['db'] = $GLOBALS['db']; + } PMA_ajaxResponse($message, $message->isSuccess(), (isset($extra_data) ? $extra_data : '')); } diff --git a/tbl_change.php b/tbl_change.php index 54e0d7f0ff..41e823016a 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -207,7 +207,6 @@ $chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5 && // Had to put the URI because when hosted on an https server, // some browsers send wrongly this form to the http server. -if ($cfg['CtrlArrowsMoving']) { ?> @@ -218,7 +217,6 @@ document.onkeydown = onKeyDownArrowsHandler; //]]> $db, @@ -509,7 +507,7 @@ foreach ($rows as $row_id => $vrow) { if (($cfg['ProtectBinary'] && $field['is_blob'] && !$is_upload) || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) { echo ' ' . __('Binary') . '' . "\n"; - } elseif (strstr($field['True_Type'], 'enum') || strstr($field['True_Type'], 'set')) { + } elseif (strstr($field['True_Type'], 'enum') || strstr($field['True_Type'], 'set') || 'geometry' == $field['pma_type']) { echo ' --' . "\n"; } else { ?> @@ -934,6 +932,10 @@ foreach ($rows as $row_id => $vrow) { } } // end if (web-server upload directory) } // end elseif (binary or blob) + + elseif ('geometry' == $field['pma_type']) { + // ignore this column to avoid changing it + } else { // field size should be at least 4 and max 40 $fieldsize = min(max($field['len'], 4), 40); diff --git a/tbl_create.php b/tbl_create.php index 0d15822ac2..807755018c 100644 --- a/tbl_create.php +++ b/tbl_create.php @@ -38,6 +38,7 @@ require_once './libraries/common.inc.php'; $action = 'tbl_create.php'; require_once './libraries/header.inc.php'; +require_once './libraries/build_action_titles.inc.php'; // Check parameters PMA_checkParameters(array('db')); @@ -299,25 +300,21 @@ if (isset($_REQUEST['do_save_data'])) { } $new_table_string .= '' . "\n"; - $new_table_string .= ' ' . __('Browse') . ' ' . "\n"; + $new_table_string .= '' . $titles['NoBrowse'] . '' . "\n"; - $new_table_string .= ' '; - $new_table_string .= '' . __('Structure') . ''; - $new_table_string .= ' ' . "\n"; + $new_table_string .= '' . $titles['Structure'] . '' . "\n"; - $new_table_string .= ' ' . __('Search') . ' ' . "\n"; + $new_table_string .= '' . $titles['NoSearch'] . '' . "\n"; - $new_table_string .= ' '; - $new_table_string .= '' . __('Insert') . ''; - $new_table_string .= ' ' . "\n"; + $new_table_string .= '' . $titles['Insert'] . '' . "\n"; - $new_table_string .= ' ' . __('Empty') . ' ' . "\n"; + $new_table_string .= '' . $titles['NoEmpty'] . '' . "\n"; - $new_table_string .= ' '; - $new_table_string .= '' . __('Drop') . ''; - $new_table_string .= ' ' . "\n"; + $new_table_string .= $titles['Drop']; + $new_table_string .= '' . "\n"; $new_table_string .= '' . $tbl_stats['Rows'] . '' . "\n"; diff --git a/user_password.php b/user_password.php index 58f9cfcc75..d3b577b7c6 100644 --- a/user_password.php +++ b/user_password.php @@ -35,7 +35,6 @@ if (! defined('PMA_NO_VARIABLES_IMPORT')) { require_once './libraries/common.inc.php'; $GLOBALS['js_include'][] = 'server_privileges.js'; -$GLOBALS['js_include'][] = 'password_generation.js'; /** * Displays an error message and exits if the user isn't allowed to use this